Skip to content

Commit

Permalink
ci: add ci
Browse files Browse the repository at this point in the history
  • Loading branch information
marekvospel committed Nov 20, 2023
1 parent 7fc7d3e commit 3231c1a
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Rust CI

on:
push:
pull_request:

permissions:
contents: read

jobs:
test:
name: Rust ${{ matrix.rust }}
runs-on: ubuntu-lateset
strategy:
matrix:
rust: [stable, beta, nightly]
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{matrix.rust}}
- run: cargo test --all

0 comments on commit 3231c1a

Please sign in to comment.