Skip to content

Merge pull request #84 from jfrimmel/maintenance #70

Merge pull request #84 from jfrimmel/maintenance

Merge pull request #84 from jfrimmel/maintenance #70

Workflow file for this run

name: Continuos Integration
on:
push:
env:
CARGO_TERM_COLOR: always
jobs:
# build the crate on Linux, Windows and MacOS (can only be tested on Linux)
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
rust: [stable, nightly]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- run: rustup update --no-self-update ${{ matrix.rust }} && rustup default ${{ matrix.rust }}
- name: Build
run: cargo build
# execute all tests (requires an installed valgrind)
test:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v4
- name: Install valgrind
run: sudo apt install valgrind
- name: Run tests
run: cargo test