aboutsummaryrefslogtreecommitdiff
path: root/.gitea/workflows/test.yml
blob: bd61616184f1e217887d812db5b85719ced968c3 (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@v4
      - uses: dtolnay/rust-toolchain@stable
      - run: cargo check --all
      - run: cargo test --all-features