From bc72ee5ffe381bcf56de08673cbba734a6df5254 Mon Sep 17 00:00:00 2001 From: Termina1 Date: Fri, 13 Sep 2024 22:00:15 +0300 Subject: [PATCH] remove window tests --- .github/workflows/test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5b7bc94..632c8b1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -3,17 +3,17 @@ name: Package tests on: [push] permissions: - contents: read # allow read access to the content for analysis + contents: read # allow read access to the content for analysis pull-requests: read # allow read access to pull request - checks: write # allow write access to checks to allow the action to annotate code in the PR + checks: write # allow write access to checks to allow the action to annotate code in the PR jobs: tests: name: Go tests strategy: matrix: - go: ['1.21'] - os: [ubuntu-latest, macos-latest, windows-latest] + go: ["1.21"] + os: [ubuntu-latest, macos-latest] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4