Skip to content

Commit

Permalink
Add cargo tests workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
nokyan committed Oct 22, 2024
1 parent a4b9e7b commit 4203033
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/cargo-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Cargo tests

on:
push:
pull_request:

env:
CARGO_TERM_COLOR: always

jobs:
test:
runs-on: ubuntu-latest
container:
image: bilelmoussaoui/flatpak-github-actions:gnome-44
options: --privileged
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
- run: cargo test --all-features

0 comments on commit 4203033

Please sign in to comment.