tests #1533
This file contains hidden or 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: tests | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| schedule: | |
| - cron: '0 0 * * *' | |
| workflow_dispatch: | |
| permissions: | |
| contents: none | |
| jobs: | |
| compatibility: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| go-version: [1.21.x, ^1.22.x] | |
| platform: [ubuntu-latest, macos-latest, windows-latest, ubuntu-24.04-arm] | |
| runs-on: ${{ matrix.platform }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - name: Setup Go | |
| uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0 | |
| with: | |
| go-version: ${{ matrix.go-version }} | |
| - name: Run Tests | |
| run: make test | |
| - run: make bench | |
| tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - name: Setup Go | |
| uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0 | |
| with: | |
| go-version: ^1.22.x | |
| - name: Run benchmarks | |
| run: make bench | |
| - name: Run fuzzers | |
| env: | |
| # Run for 2 minutes to ensure it is working. Long runs happens nightly. | |
| FUZZ_TIME: 2m | |
| run: make fuzz |