Skip to content

feat: Add shell mode to Exec with output-based guards (#22) #98

feat: Add shell mode to Exec with output-based guards (#22)

feat: Add shell mode to Exec with output-based guards (#22) #98

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Vet
run: go vet ./...
- name: Cross-compile (Windows)
run: GOOS=windows GOARCH=amd64 go build ./...
- name: Cross-compile (macOS)
run: GOOS=darwin GOARCH=amd64 go build ./...
- name: Test
run: go test -v -race -coverprofile=coverage.txt -covermode=atomic -count=1 ./...
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
integration:
runs-on: ubuntu-latest
needs: test
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Build binary
run: go build -o converge ./cmd/converge
- name: Integration tests
run: sudo bash .github/ci/scripts/test-linux.sh