Skip to content

Merge pull request #26 from Dylan-DPC/patch-1 #56

Merge pull request #26 from Dylan-DPC/patch-1

Merge pull request #26 from Dylan-DPC/patch-1 #56

Workflow file for this run

name: Rust
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- stable
- nightly-2022-08-11
steps:
- uses: actions/checkout@v2
- name: Use ${{ matrix.rust }}
run: rustup default ${{ matrix.rust }}
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose