Merge pull request #308 from SiaFoundation/nate/refactor-sector-prune #747
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Main | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
permissions: | |
contents: read | |
strategy: | |
matrix: | |
os: [ ubuntu-latest , macos-latest, windows-latest ] | |
go-version: [ '1.21', '1.22' ] | |
steps: | |
- name: Configure git | |
run: git config --global core.autocrlf false # required on Windows | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Test | |
uses: ./.github/actions/test | |
- name: Build | |
env: | |
CGO_ENABLED: 1 | |
run: go build -o bin/ ./cmd/hostd |