Skip to content

优化 SM3 实现

优化 SM3 实现 #155

Workflow file for this run

name: Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions:
contents: write
packages: write
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set timezone
uses: szenius/[email protected]
with:
timezoneLinux: "Asia/Shanghai"
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.21
- name: Go mod tidy
run: go mod tidy
- name: Unit tests
run: go test -short -covermode=atomic -coverprofile=cover.out ./...
- name: Test Generic
run: go test -short -tags=purego -covermode=atomic ./...
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
files: cover.out