Skip to content

Optimize non-overlapping CFB8 decryption using SIMD XOR #588

Optimize non-overlapping CFB8 decryption using SIMD XOR

Optimize non-overlapping CFB8 decryption using SIMD XOR #588

Workflow file for this run

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

View workflow run for this annotation

GitHub Actions / Go

Invalid workflow file

The workflow is not valid. .github/workflows/go.yml (Line: 35, Col: 13): Unexpected symbol: '('. Located at position 28 within expression: matrix.go_version.startWith('^')
uses: actions/upload-artifact@v3
with:
name: tools
path: ./bin/tools