Skip to content

fix: replace deprecated format with formats in archives #9

fix: replace deprecated format with formats in archives

fix: replace deprecated format with formats in archives #9

Workflow file for this run

name: Test
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.21'
- name: Download dependencies
run: go mod download
- name: Run tests
run: go test -v ./...
- name: Build
run: go build -o hsctl .
- name: Check binary
run: ./hsctl --version || ./hsctl --help