Bugfix: When parsed within a template BinXMLElementStart is not same #14
Workflow file for this run
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: Windows Test | |
on: [pull_request] | |
jobs: | |
build: | |
name: Windows Test | |
runs-on: windows-latest | |
steps: | |
- name: Set up Go 1.22.2 | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.22.2 | |
id: go | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v2 | |
- name: Build | |
if: always() | |
env: | |
CC: x86_64-w64-mingw32-gcc | |
shell: bash | |
run: | | |
GOOS=windows GOARCH=amd64 CGO_ENABLED=1 CC=x86_64-w64-mingw32-gcc go build -o dumpevtx.exe cmd/*.go | |
- name: Test | |
shell: bash | |
if: always() | |
run: | | |
go test -v | |
- name: Store Artifacts | |
shell: bash | |
if: always() | |
run: | | |
go test -v -update | |
- uses: actions/upload-artifact@master | |
if: always() | |
with: | |
name: fixtures | |
path: fixtures |