Skip to content

s/singe-shot/single-shot/ #8

s/singe-shot/single-shot/

s/singe-shot/single-shot/ #8

Workflow file for this run

name: Build & Test
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
build:
strategy:
fail-fast: false
matrix:
os:
- macos-latest
- ubuntu-latest
- windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Build
run: cargo build --verbose
- name: Test
run: cargo test --verbose
- name: Test Release
run: |
cargo clean
cargo test --release --verbose