Merge pull request #14 from penberg/penberg-patch-1

Configure GitHub Actions
This commit is contained in:
Pekka Enberg
2023-12-28 12:45:27 +02:00
committed by GitHub

25
.github/workflows/rust.yml vendored Normal file
View File

@@ -0,0 +1,25 @@
name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose