dep: bump github.com/luxfi/genesis v1.7.1 #556
This file contains hidden or 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: Build + Test Mac-Windows | |
| on: | |
| push: | |
| tags: | |
| - "*" # Push events to every tag | |
| branches: | |
| - main | |
| - dev | |
| - master | |
| jobs: | |
| run_build_tests: | |
| name: build_tests | |
| runs-on: ${{ matrix.os }} | |
| env: | |
| GOPRIVATE: github.com/luxfi/* | |
| GONOSUMDB: github.com/luxfi/* | |
| CGO_ENABLED: "0" | |
| GOWORK: off | |
| strategy: | |
| matrix: | |
| os: [windows-latest, macos-latest] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ./.github/actions/setup-go-for-project | |
| - name: Configure Git for private modules | |
| shell: bash | |
| run: git config --global url."https://${{ github.token }}@github.com/".insteadOf "https://github.com/" | |
| - name: build_test | |
| shell: bash | |
| run: .github/workflows/build_and_test.sh |