Add support for Unicode escape sequences in the \u{XXXXXX} format
#461
Workflow file for this run
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 | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| go-versions: [ '1.18', '1.22', '1.24', '1.25' ] | |
| go-arch: [ '386' ] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Setup Go ${{ matrix.go-version }} | |
| uses: actions/setup-go@v4 | |
| with: | |
| go-version: ${{ matrix.go-version }} | |
| - name: Build | |
| run: GOARCH=${{ matrix.go-arch }} go build |