🧱 Chunk is a download manager for slow and unstable servers
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #25 from cuducos/improve_test_ci

Improving test CI

authored by

Daniel Fireman and committed by
GitHub
b1413716 5195d58e

+8 -3
+8 -3
.github/workflows/tests.yaml
··· 2 2 on: [push, pull_request] 3 3 jobs: 4 4 test: 5 - runs-on: ubuntu-latest 6 - container: golang:1.18-bullseye 5 + strategy: 6 + fail-fast: false 7 + matrix: 8 + os: ["windows-latest", "ubuntu-latest", "macOS-latest"] 9 + go: ["1.18.x", "1.19.x"] 10 + runs-on: ${{ matrix.os }} 11 + 7 12 steps: 8 13 - uses: actions/checkout@v3 9 14 - uses: actions/setup-go@v3 10 15 with: 11 - go-version: "1.19" 16 + go-version: ${{ matrix.go }} 12 17 - run: "go test --race ."