mirror of https://github.com/curusarn/resh
parent
4dcdc3e0fc
commit
d4bbfaa9f6
@ -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