diff options
author | Jakub <53441451+kuba6000@users.noreply.github.com> | 2022-08-10 21:26:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-10 21:26:27 +0200 |
commit | 81956675c5e93b3d4c3df5f85f5281c794141e41 (patch) | |
tree | 241e76891e5b10ff19fe0a607860dc66d1099677 /.github/workflows/test-scala-presence.yml | |
parent | b215737c229618c5dcf11bd47fb35b5d10c68c73 (diff) | |
download | GT5-Unofficial-81956675c5e93b3d4c3df5f85f5281c794141e41.tar.gz GT5-Unofficial-81956675c5e93b3d4c3df5f85f5281c794141e41.tar.bz2 GT5-Unofficial-81956675c5e93b3d4c3df5f85f5281c794141e41.zip |
Add actions (#2)
Diffstat (limited to '.github/workflows/test-scala-presence.yml')
-rw-r--r-- | .github/workflows/test-scala-presence.yml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/.github/workflows/test-scala-presence.yml b/.github/workflows/test-scala-presence.yml new file mode 100644 index 0000000000..6b1091e1fd --- /dev/null +++ b/.github/workflows/test-scala-presence.yml @@ -0,0 +1,18 @@ +name: Test Scala Presence + +on: + pull_request: + branches: [ master, main ] + push: + branches: [ master, main ] + +jobs: + test-scala-presence: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Check file content + uses: mattsb42-meta/not-grep@1.0.0 + with: + config-file: ./.github/test-scala-presence.toml |