From b552a6aba70192c400c3677b645ca2a14546db7f Mon Sep 17 00:00:00 2001 From: xxc3nsoredxx Date: Fri, 7 May 2021 16:45:50 -0500 Subject: Create GitHub Action Automatically runs test/test.sh when code is pushed to the repo. --- .github/workflows/run_test.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/workflows/run_test.yml (limited to '.github') 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 -- cgit v1.2.3