diff options
author | xxc3nsoredxx <xxc3ncoredxx@gmail.com> | 2021-05-07 16:45:50 -0500 |
---|---|---|
committer | Rasmus Thomsen <oss@cogitri.dev> | 2021-06-01 14:25:32 +0200 |
commit | b552a6aba70192c400c3677b645ca2a14546db7f (patch) | |
tree | e0c4cb6cfbc2e2a6872297e572cf9f9427222db4 | |
parent | a0e24dc668842004a0c57ca022e6eb07b666b537 (diff) | |
download | wgetpaste-b552a6aba70192c400c3677b645ca2a14546db7f.tar.gz |
Create GitHub Action
Automatically runs test/test.sh when code is pushed to the repo.
-rw-r--r-- | .github/workflows/run_test.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.github/workflows/run_test.yml b/.github/workflows/run_test.yml new file mode 100644 index 0000000..6a1f85e --- /dev/null +++ b/.github/workflows/run_test.yml @@ -0,0 +1,10 @@ +name: 'wgetpaste test runner' +on: [push] +jobs: + run-test: + name: 'Run test/test.sh' + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - run: test/test.sh + shell: bash |