Skip to content

Commit

Permalink
Add github workflow
Browse files Browse the repository at this point in the history
mdsteele committed Feb 8, 2024
1 parent a4e545a commit 350bb77
Showing 2 changed files with 24 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: tests

on:
push:
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'

jobs:
tests:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Install cc65 toolchain
run: sudo apt install -y cc65
- name: Build
run: make all
- name: Test
run: make test
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Annalog

[![Build Status](https://github.com/mdsteele/annalog/actions/workflows/tests.yml/badge.svg)](https://github.com/mdsteele/annalog/actions/workflows/tests.yml)

A homebrew programming metroidvania for the NES (still a work in progress).

## Building

0 comments on commit 350bb77

Please sign in to comment.