From 746ace2254c4f23cecb5337fe04bab50df96c192 Mon Sep 17 00:00:00 2001 From: Peter Law Date: Sat, 4 May 2024 17:34:14 +0100 Subject: [PATCH] Add a self-test workflow --- .github/workflows/main.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..37cb7d4 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,22 @@ +name: main + +on: + push: + branches: + - main + pull_request: + +jobs: + self-test-happy-path: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + with: + repository: PeterJCLaw/dummy-comp + ref: 811452ba69bfa839fc6e80b40e8d6d3ceae8067d + + - uses: actions/checkout@v3 + with: + path: srcomp-validate-action + + - uses: ./srcomp-validate-action