mirror of
https://github.com/danog/parser.git
synced 2024-12-02 17:38:16 +01:00
c02b4db78d
Signed-off-by: azjezz <azjezz@protonmail.com>
41 lines
728 B
YAML
41 lines
728 B
YAML
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
|
|
|
|
- name: install just
|
|
run: |
|
|
cargo install just
|
|
|
|
- name: test third-party
|
|
run: just test-third-party
|
|
|