Skip to content

edit: improve stability when files are still being downloaded #5

edit: improve stability when files are still being downloaded

edit: improve stability when files are still being downloaded #5

Workflow file for this run

# name: Go Test
# on:
# push:
# branches:
# - main
# jobs:
# test:
# name: Test on ${{ matrix.os }}
# runs-on: ${{ matrix.os }}
# strategy:
# matrix:
# os: [ubuntu-latest, macos-latest]
# steps:
# - name: Checkout repository
# uses: actions/checkout@v4
# - name: Set up Go
# uses: actions/setup-go@v5
# with:
# go-version: '1.22'
# - name: Install dependencies
# run: |
# go mod tidy
# go mod download
# - name: Run tests
# run: go test ./...