diff options
| author | Valentin Popov <valentin@popov.link> | 2026-01-30 03:00:58 +0300 |
|---|---|---|
| committer | Valentin Popov <valentin@popov.link> | 2026-01-30 03:00:58 +0300 |
| commit | 27e9d2b39ce688a41212e7fb8523e9e792d33dc1 (patch) | |
| tree | 7a084a55667eb6c60b0a7d23b63661ac0fa4a688 /.gitea | |
| parent | b283e2a8dfdc64836b19be7bead02ff6d7541204 (diff) | |
| download | fparkan-27e9d2b39ce688a41212e7fb8523e9e792d33dc1.tar.xz fparkan-27e9d2b39ce688a41212e7fb8523e9e792d33dc1.zip | |
Move CI to Gitea Actions
Diffstat (limited to '.gitea')
| -rw-r--r-- | .gitea/workflows/test.yml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml new file mode 100644 index 0000000..bd61616 --- /dev/null +++ b/.gitea/workflows/test.yml @@ -0,0 +1,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 |
