mirror of
https://github.com/darmiel/yaxc.git
synced 2025-09-05 05:54:50 +08:00
Added GitHub Actions for tests
This commit is contained in:
parent
48c3c540d6
commit
c50c70f883
1 changed files with 16 additions and 0 deletions
16
.github/workflows/test.yml
vendored
Normal file
16
.github/workflows/test.yml
vendored
Normal file
|
@ -0,0 +1,16 @@
|
|||
on: push
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Install Go 1.16
|
||||
uses: actions/setup-go@v2
|
||||
with:
|
||||
go-version: 1.16
|
||||
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Run tests
|
||||
run: go test -v
|
Loading…
Add table
Reference in a new issue