mirror of
https://github.com/grdl/git-get.git
synced 2026-02-04 13:56:46 +00:00
Add github action for running unit tests
This commit is contained in:
14
.github/workflows/test.yml
vendored
Normal file
14
.github/workflows/test.yml
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
name: test
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
- name: Set up Go
|
||||
uses: actions/setup-go@v2
|
||||
with:
|
||||
go-version: 1.14
|
||||
- name: Run go test
|
||||
run: go test ./...
|
||||
Reference in New Issue
Block a user