From 24c5270f8522b447701780f5820c4379bf5b080a Mon Sep 17 00:00:00 2001 From: Fredrik Ekre Date: Wed, 6 Nov 2024 17:03:47 +0100 Subject: [PATCH] Add GH Action workflow to check Runic formatting --- .github/workflows/Check.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/Check.yml diff --git a/.github/workflows/Check.yml b/.github/workflows/Check.yml new file mode 100644 index 00000000000..ad03a17cdf3 --- /dev/null +++ b/.github/workflows/Check.yml @@ -0,0 +1,23 @@ +--- +name: Check +on: + push: + branches: + - 'master' + - 'release-' + tags: + - '*' + pull_request: +jobs: + runic: + name: Runic formatting + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: julia-actions/setup-julia@v2 + with: + version: '1' + - uses: julia-actions/cache@v2 + - uses: fredrikekre/runic-action@v1 + with: + version: '1'