aboutsummaryrefslogtreecommitdiff
path: root/.gitea/workflows/test.yml
blob: 56f08ce4a2f85f9f5350ff653680f8e3bd486f7f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
name: Test

on: [push, pull_request]

jobs:
  test:
    name: cargo test
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v6
      - uses: dtolnay/rust-toolchain@stable
      - run: cargo check --all
      - run: cargo test --all-features