Skip to content

feat: Add code generation and fix double-slash URL path bug(#804) #3386

feat: Add code generation and fix double-slash URL path bug(#804)

feat: Add code generation and fix double-slash URL path bug(#804) #3386

Workflow file for this run

name: Unit
on: [push, pull_request]
env:
GITHUB_ACTIONS: true
jobs:
test:
name: "Tests (${{ matrix.os }})"
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
fail-fast: false
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6
with: { go-version-file: 'go.mod' }
- run: go version
- run: make test-unit race=true
if: matrix.os != 'ubuntu-latest'
- run: make test-unit race=true coverage=true
if: matrix.os == 'ubuntu-latest'
- uses: codecov/codecov-action@75cd11691c0faa626561e295848008c8a7dddffe # v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: tmp/unit.cov,tmp/osgen.cov
flags: unit
if: matrix.os == 'ubuntu-latest'
bench:
name: Benchmarks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6
with: { go-version-file: 'go.mod' }
- run: go version
- run: make test-bench