1
0
Fork 0
baseview/.github/workflows/rust.yml
Charles Saracco 303082bd6e
Create GitHub action for building project
Tries to build on all three platforms we're targeting (Linux, Windows, MacOS)
2020-05-25 18:23:47 -04:00

23 lines
433 B
YAML

name: Rust
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v2
- name: install rust stable
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose