From 018f8dae306deb10e3f0517b869cf8b303c19457 Mon Sep 17 00:00:00 2001 From: Corwin Kuiper Date: Sun, 20 Jun 2021 23:08:44 +0100 Subject: [PATCH] add check if files are identical --- .github/workflows/linker-script.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/workflows/linker-script.yml diff --git a/.github/workflows/linker-script.yml b/.github/workflows/linker-script.yml new file mode 100644 index 0000000..cfc3ff5 --- /dev/null +++ b/.github/workflows/linker-script.yml @@ -0,0 +1,10 @@ +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 + cmp --silent -- "agb/gba.ld" "template/gba.ld" \ No newline at end of file