Skip to content

Commit

Permalink
Test with GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelmior committed Oct 31, 2023
1 parent 7bcdc2d commit 1155803
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
on: [push]

name: CI

jobs:
build_and_test:
name: Rust project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- uses: actions-rs/cargo@v1
with:
command: build
args: --release --all-features
- uses: actions-rs/cargo@v1
with:
command: test

0 comments on commit 1155803

Please sign in to comment.