Skip to content

Commit

Permalink
Moved from Travis to GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
reima committed Mar 24, 2024
1 parent e530ba5 commit d90eef9
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 9 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: CI

on:
push:
branches: [ "master" ]

env:
CARGO_TERM_COLOR: always

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
components: clippy
- name: Run Clippy
run: cargo clippy
- name: Build
run: cargo build --verbose
8 changes: 0 additions & 8 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# rustboy [![Build Status](https://app.travis-ci.com/reima/rustboy.svg?branch=master)](https://app.travis-ci.com/github/reima/rustboy)
# rustboy ![Build Status](https://github.com/reima/rustboy/actions/workflows/ci.yml/badge.svg)

`rustboy` is an emulator for the Nintendo GameBoy written in the Rust programming language.

0 comments on commit d90eef9

Please sign in to comment.