diff options
| author | 2021-10-23 09:08:13 +0900 | |
|---|---|---|
| committer | 2021-10-23 09:14:18 +0900 | |
| commit | 3032ce9f7bccc4efb46bf8c0400058aca7da7b41 (patch) | |
| tree | ee4a38c6b23b4b4d43fa2bd3def37087ec4cbb7b /.github/workflows | |
| parent | Merge pull request #48 from pepe/request-body-size (diff) | |
Add GitHub workflow to automate tests
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/test.yml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..9104fa1 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,16 @@ +name: test + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - name: "Test project" + uses: pyrmont/action-janet-test@v2 |
