diff options
| author | StevenWdV <stevenwdv@gmail.com> | 2021-11-19 14:07:36 +0100 |
|---|---|---|
| committer | StevenWdV <stevenwdv@gmail.com> | 2021-11-19 14:07:36 +0100 |
| commit | 68c3c92e5e008b1b0914b856274a61d1666ba75d (patch) | |
| tree | 6775eaf0fc381bbeb96df8d0c62fb068b284f03a /.github/workflows/test.yml | |
| parent | eefb7cd962918ea3e2d7c2f9df47b930aa26a339 (diff) | |
Add CI test workflow
Diffstat (limited to '.github/workflows/test.yml')
| -rw-r--r-- | .github/workflows/test.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..b695752 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,15 @@ +name: Test + +on: [push, pull_request] + +jobs: + test: + name: Test + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-go@v2 + with: + go-version: ^1.15 + - run: go test |
