mirror of https://github.com/curusarn/resh
pull/168/head
commit
02793d14af
@ -0,0 +1,22 @@ |
|||||||
|
name: Go |
||||||
|
on: [push] |
||||||
|
jobs: |
||||||
|
|
||||||
|
test: |
||||||
|
name: Test |
||||||
|
runs-on: ubuntu-latest |
||||||
|
steps: |
||||||
|
|
||||||
|
- name: Set up Go |
||||||
|
uses: actions/setup-go@v2 |
||||||
|
with: |
||||||
|
go-version: 1.16 |
||||||
|
|
||||||
|
- name: Check out code into the Go module directory |
||||||
|
uses: actions/checkout@v2 |
||||||
|
|
||||||
|
- name: Test |
||||||
|
run: go test -v ./... |
||||||
|
|
||||||
|
- name: Vet |
||||||
|
run: go vet ./... |
||||||
@ -0,0 +1,17 @@ |
|||||||
|
name: Shell |
||||||
|
on: [push] |
||||||
|
jobs: |
||||||
|
|
||||||
|
test: |
||||||
|
name: Test |
||||||
|
runs-on: ubuntu-latest |
||||||
|
steps: |
||||||
|
|
||||||
|
- name: Set up |
||||||
|
run: sudo apt-get install -y shellcheck zsh |
||||||
|
|
||||||
|
- name: Check out code into the Go module directory |
||||||
|
uses: actions/checkout@v2 |
||||||
|
|
||||||
|
- name: Test |
||||||
|
run: scripts/test.sh |
||||||
Loading…
Reference in new issue