Update tree-sitter-extractor-test.yml

Fix workflow
This commit is contained in:
Arthur Baars
2023-05-04 13:07:21 +02:00
committed by GitHub
parent d2cf1a24e0
commit 55e426e191

View File

@@ -25,20 +25,22 @@ defaults:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Check formatting
run: cargo fmt --all -- --check
- name: Run tests
run: cargo test --verbose
- name: Run clippy
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Check formatting
run: cargo fmt --check
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run clippy
run: cargo clippy -- --no-deps -D warnings
run: cargo clippy -- --no-deps -D warnings