1
0
mirror of https://github.com/mre/mos6502.git synced 2024-06-01 14:41:38 +00:00

Merge pull request #20 from naokiri/github-actions

Add github actions
This commit is contained in:
Matthias Endler 2019-10-22 08:52:03 +02:00 committed by GitHub
commit ab009bb539
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 23 additions and 1 deletions

View File

@ -0,0 +1,21 @@
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

View File

@ -1,6 +1,7 @@
# mos6502
[![Build Status](https://travis-ci.org/mre/mos6502.svg?branch=master)](https://travis-ci.org/mre/mos6502)
[![Build Status](https://travis-ci.org/mre/mos6502.svg?branch=master)](https://travis-ci.org/mre/mos6502)
![](https://github.com/mre/mos6502/workflows/test/badge.svg)
An emulator for the [MOS 6502 CPU](https://en.wikipedia.org/wiki/MOS_Technology_6502) written in Rust.
This started off as a fork of [amw-zero/6502-rs](https://github.com/amw-zero/6502-rs),