diff --git a/.gitea/workflows/dev.yaml b/.gitea/workflows/dev.yaml index 10801aa..c8dbb95 100644 --- a/.gitea/workflows/dev.yaml +++ b/.gitea/workflows/dev.yaml @@ -9,7 +9,7 @@ jobs: test: strategy: matrix: - go: [stable, 1.25] + go: [stable] runs-on: ubuntu-latest steps: - name: Checkout code @@ -25,13 +25,16 @@ jobs: # version: v2.6 build: + strategy: + matrix: + go: [stable] steps: - name: Checkout code uses: actions/checkout@v6 - name: Setup Go uses: actions/setup-go@v6 with: - go-version: stable + go-version: ${{ matrix.go }} - name: Download modules run: go mod download - name: Make build directory