Skip to content

Commit

Permalink
Add rust GitHub workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mqudsi committed Apr 25, 2024
1 parent 20eeb1c commit 21c32c3
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Rust

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

env:
CARGO_TERM_COLOR: always

jobs:
build:
strategy:
matrix:
# This crate is high-level enough that it probably doesn't matter what OS we test under
# os: [windows-latest, ubuntu-latest, macos-latest]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose --all-features
- name: Run tests
run: cargo test --verbose --all-features

0 comments on commit 21c32c3

Please sign in to comment.