Skip to content

Cargo fmt

Cargo fmt #47

Workflow file for this run

name: Build
on:
push:
branches: [master]
pull_request:
branches: [master]
env:
CARGO_TERM_COLOR: always
RUST_BACKTRACE: 1
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- name: Versions
run: |
git version
cargo version
- name: Build
run: cargo build
- name: Run tests
run: cargo test