mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-24 08:41:34 +11:00
13 lines
275 B
YAML
13 lines
275 B
YAML
name: Enforce gba.ld consistency
|
|
|
|
on: push
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- name: Check out repository
|
|
uses: actions/checkout@v2
|
|
- name: Check if gba.ld files are identical
|
|
run: cmp --silent -- "agb/gba.ld" "template/gba.ld"
|