From f087342b2659ff35a613598b6750cc2f54ab942f Mon Sep 17 00:00:00 2001 From: Tim Gover Date: Tue, 8 Apr 2025 08:20:14 +0100 Subject: [PATCH] test: Add github workflow for test-rpi-eeprom-config --- .github/workflows/test.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..f9f4b47 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,17 @@ +name: Test EEPROM Config + +on: + pull_request: + branches: [ 'master' ] + +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: Run EEPROM Config Tests + run: | + cd test + chmod +x test-rpi-eeprom-config + ./test-rpi-eeprom-config \ No newline at end of file