Optimize non-overlapping CFB8 decryption using SIMD XOR #588
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: Go | ||
on: [ push, pull_request ] | ||
jobs: | ||
test: | ||
name: Test | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
# match the minimum supported and the latest Go versions | ||
go_version: [ '1.20', '^1.20' ] | ||
steps: | ||
- name: Setup Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: ${{ matrix.go_version }} | ||
check-latest: true | ||
- name: Check out code into the Go module directory | ||
uses: actions/checkout@v4 | ||
- name: Test | ||
run: go test ./... | ||
- run: mkdir -p ./bin/tools | ||
- name: Build tools | ||
run: go build -o ./bin/tools ./examples/... | ||
- name: Upload tools | ||
if: ${{ matrix.go_version.startWith('^') }} | ||
Check failure on line 35 in .github/workflows/go.yml GitHub Actions / GoInvalid workflow file
|
||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: tools | ||
path: ./bin/tools |