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