🧱 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.

Improving test CI

+7 -3
+7 -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 + fail-fast: false 6 + matrix: 7 + os: ["windows-latest", "ubuntu-latest", "macOS-latest"] 8 + go: ["1.18.x", "1.19.x"] 9 + runs-on: ${{ matrix.os }} 10 + 7 11 steps: 8 12 - uses: actions/checkout@v3 9 13 - uses: actions/setup-go@v3 10 14 with: 11 - go-version: "1.19" 15 + go-version: ${{ matrix.go }} 12 16 - run: "go test --race ."