Skip to content

Merge pull request #7 from agarret7/ptrie #38

Merge pull request #7 from agarret7/ptrie

Merge pull request #7 from agarret7/ptrie #38

Workflow file for this run

name: Cargo Build & Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build_and_test:
name: modppl - latest
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- nightly
steps:
- uses: actions/checkout@v3
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: cargo build --verbose
- run: cargo test --verbose