parser/.github/workflows/third-party-tests.yml
azjezz 567532c84e
chore: remove just from CI
Signed-off-by: azjezz <azjezz@protonmail.com>
2022-12-07 14:37:11 +01:00

37 lines
723 B
YAML

name: third-party
on:
push:
branches: [main]
pull_request:
jobs:
third-party-tests:
name: third-party
runs-on: 'ubuntu-latest'
strategy:
fail-fast: false
matrix:
target:
- 'php_standard_library'
- 'php_parser'
- 'symfony'
- 'laravel'
steps:
- name: checkout
uses: actions/checkout@v3
- name: install rust
uses: actions-rs/toolchain@v1
with:
toolchain: 'stable'
override: true
components: rustfmt, clippy
- name: cache
uses: Swatinem/rust-cache@v2.0.0
- name: test ${{ matrix.target }}
run: cargo test ${{ matrix.target }} -- --nocapture