Skip to content

Initial commit

Initial commit #1

Workflow file for this run

name: Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:

Check failure on line 11 in .github/workflows/tests.yml

View workflow run for this annotation

GitHub Actions / Tests

Invalid workflow file

The workflow is not valid. .github/workflows/tests.yml (Line: 11, Col: 3): The workflow must contain at least one job with no dependencies.
needs: [ check ]
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Check
run: cargo check --workspace --examples --tests
- name: Test
run: cargo test --workspace