Optimize non-overlapping CFB8 decryption using SIMD XOR #586
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: | |
latest: [ true, false ] | |
steps: | |
- name: Setup Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.20 | |
check-latest: ${{ matrix.latest }} | |
- 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.latest }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: tools | |
path: ./bin/tools |