Re-add elements using the '(re)applied index' index instead of the revert index #238
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 | |
env: | |
CGO_ENABLED: 1 | |
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@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Test | |
uses: ./.github/actions/test | |
- name: Build | |
run: go build -o bin/ ./cmd/walletd |