1name: Rust
2
3on: [push]
4
5jobs:
6  build:
7    runs-on: ${{ matrix.os }}-latest
8    steps:
9    - uses: actions/checkout@v2
10    - uses: rust-lang/simpleinfra/github-actions/simple-ci@master
11    strategy:
12      matrix:
13        os: [ubuntu, windows, macos]
14