2022-11-30 01:17:34 +01:00
|
|
|
name: third-party
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [main]
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
third-party-tests:
|
|
|
|
name: third-party
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
rust:
|
|
|
|
- 'stable'
|
|
|
|
os:
|
|
|
|
- 'ubuntu-latest'
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: checkout
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: install rust
|
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
toolchain: ${{ matrix.rust }}
|
|
|
|
override: true
|
|
|
|
components: rustfmt, clippy
|
|
|
|
|
|
|
|
- name: cache
|
|
|
|
uses: Swatinem/rust-cache@v2.0.0
|
|
|
|
|
2022-12-06 13:47:55 +01:00
|
|
|
- name: install just
|
|
|
|
run: |
|
|
|
|
cargo install just
|
|
|
|
|
2022-11-30 01:17:34 +01:00
|
|
|
- name: test third-party
|
2022-12-05 13:32:36 +01:00
|
|
|
run: just test-third-party
|
2022-12-05 12:55:44 +01:00
|
|
|
|