From ca6fa571e44703da5185eb424678c96b56841e7e Mon Sep 17 00:00:00 2001 From: dazz Date: Thu, 4 Jan 2024 13:03:15 +0100 Subject: [PATCH] fix ci --- .github/workflows/continuous-integration.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/continuous-integration.yaml b/.github/workflows/continuous-integration.yaml index f785adc..4a65109 100644 --- a/.github/workflows/continuous-integration.yaml +++ b/.github/workflows/continuous-integration.yaml @@ -17,8 +17,8 @@ jobs: with: go-version: ${{ matrix.go-version }} - name: Install dependencies - run: go get . + run: go mod download - name: Build - run: go build -v ./... - - name: Test with the Go CLI - run: go test \ No newline at end of file + run: go build -o s6-cli -v ./cmd/s6cli + - name: Test + run: go test -v ./... \ No newline at end of file