mirror of
https://github.com/mre/mos6502.git
synced 2024-12-03 08:51:41 +00:00
25 lines
515 B
YAML
25 lines
515 B
YAML
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
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
|