parser/.github/workflows/third-party-tests.yml
azjezz fc3230073e
chore: run integration tests for third party libraries one by one.
Signed-off-by: azjezz <azjezz@protonmail.com>
2022-12-07 09:26:36 +01:00

50 lines
926 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 azjezz/psl
run: just test-psl
- name: test nikic/php-parser
run: just test-php-parser
- name: test symfony/symfony
run: just test-symfony
- name: test laravel/framework
run: just test-laravel