1
0
mirror of https://github.com/mre/mos6502.git synced 2024-06-13 00:29:33 +00:00
mre-mos6502/.github/workflows/continuous_testing.yaml

22 lines
453 B
YAML
Raw Normal View History

2019-10-22 00:17:15 +00:00
name: test
on: push
jobs:
build_and_test:
name: test
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@master
- name: Install cargo
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Run test
uses: actions-rs/cargo@v1
with:
command: test