Skip to content

Commit

Permalink
Add GitHub actions workflow for building and testing
Browse files Browse the repository at this point in the history
  • Loading branch information
UrsMetz committed Apr 18, 2024
1 parent cd7862e commit 59fdf16
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Cargo Build & Test

on:
push:
pull_request:

env:
CARGO_TERM_COLOR: always

jobs:
build_and_test:
name: Build and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: rustup update stable && rustup default stable
- run: cargo build --verbose
- run: cargo test --verbose

0 comments on commit 59fdf16

Please sign in to comment.