1
1
mirror of https://github.com/walles/moar.git synced 2024-08-17 16:00:22 +03:00

Source code first, then CI

This commit is contained in:
Johan Walles 2022-12-19 09:53:36 +01:00
parent 8f7f03f9dc
commit b9ddbb82d5
2 changed files with 4 additions and 0 deletions

View File

@ -15,4 +15,6 @@ jobs:
# commandline below:
# https://github.com/golangci/golangci-lint/releases/latest
run: curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b "$(go env GOPATH)"/bin v1.50.1
- name: Check out repository code
uses: actions/checkout@v2
- run: ./test.sh

View File

@ -9,5 +9,7 @@ jobs:
validate:
runs-on: windows-2022
steps:
- name: Check out repository code
uses: actions/checkout@v2
- run: go build
- run: go test -timeout 30s ./...