CI: Hello darkness my old friend

This commit is contained in:
kayos@tcp.direct 2022-05-01 17:19:45 -07:00
parent c3fcb43515
commit ee92366cd0
Signed by: kayos
GPG Key ID: 4B841471B4BEE979

@ -19,14 +19,10 @@ jobs:
- name: "setup go" - name: "setup go"
uses: "actions/setup-go@v2" uses: "actions/setup-go@v2"
with: with:
go-version: "1.17" go-version: "1.18"
- name: "install python3-pytest" - name: "go vet"
run: "sudo apt install -y python3-pytest" run: "go vet -v ./..."
- name: "make install" - name: "go test"
run: "make install" run: "go test -v ./..."
- name: "make test" - name: "go build"
run: "make test" run: "go build ./"
- name: "make smoke"
run: "make smoke"
- name: "make irctest"
run: "make irctest"