Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
don't run tests on windows
  • Loading branch information
kyleconroy committed Aug 25, 2025
commit 2c69f10e3386e1f5652d492f69d79c9b2d85e8a5
9 changes: 5 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
matrix:
# Disabling windows builds while we fix installing PostgreSQL 16
os: [ubuntu-22.04, macos-14, windows-2022]
os: [ubuntu-24.04, macos-14, windows-2022]
cgo: ['1', '0']
# Workaround no native support for conditional matrix items
# https://github.com/orgs/community/discussions/26253#discussioncomment-6745038
Expand All @@ -18,9 +18,9 @@ jobs:
# exclude:
# - isMain: false
# include:
# - os: ubuntu-22.04
# - os: ubuntu-24.04
# cgo: '1'
# - os: ubuntu-22.04
# - os: ubuntu-24.04
# cgo: '0'
name: test ${{ matrix.os }} cgo=${{ matrix.cgo }}
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -53,14 +53,15 @@ jobs:

- name: test ./...
run: gotestsum --junitfile junit.xml -- --tags=examples -timeout 20m ./...
if: ${{ matrix.os }} != "windows-2022"
env:
CI_SQLC_PROJECT_ID: ${{ secrets.CI_SQLC_PROJECT_ID }}
CI_SQLC_AUTH_TOKEN: ${{ secrets.CI_SQLC_AUTH_TOKEN }}
SQLC_AUTH_TOKEN: ${{ secrets.CI_SQLC_AUTH_TOKEN }}
CGO_ENABLED: ${{ matrix.cgo }}

vuln_check:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
timeout-minutes: 5

steps:
Expand Down
Loading