Skip to content

Bump github.com/jackc/pgx/v5 from 5.4.3 to 5.5.4 in /tools #6

Bump github.com/jackc/pgx/v5 from 5.4.3 to 5.5.4 in /tools

Bump github.com/jackc/pgx/v5 from 5.4.3 to 5.5.4 in /tools #6

Workflow file for this run

name: Pull Request Checks
on:
pull_request:
branches:
- "**"
workflow_dispatch: {}
jobs:
tests:
name: Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 'stable'
- name: Install Linux Build Dependencies
run: sudo apt-get install --yes gcc libc6-dev libx11-dev xorg-dev libxtst-dev
- uses: actions/cache@v4
id: tools
with:
path: bin
key: ${{ runner.os }}-${{ hashFiles('tools/go.sum') }}
- name: Install build/test tools
if: steps.tools.outputs.cache-hit != 'true'
run: make tools
- name: Lint Tests
run: make lint
- name: Unit Tests
run: make test
linux_windows:
name: Linux And Windows builds
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 'stable'
- name: Install Linux Build Dependencies
run: sudo apt-get install --yes gcc libc6-dev libx11-dev xorg-dev libxtst-dev
- name: Install Windows Build Dependencies
run: sudo apt-get install --yes gcc-multilib gcc-mingw-w64
- name: Build Linux
run: mkdir -p .build && CGO_ENABLED=1 go build -o .build/linux main.go
- name: Build Windows
run: mkdir -p .build && CC=x86_64-w64-mingw32-gcc CGO_ENABLED=1 GOOS=windows go build -o .build/windows.exe main.go
osx:
name: OSX Builds
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 'stable'
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest-stable
- name: Build OSX AMD64
run: mkdir -p .build && CGO_ENABLED=1 GOOS=darwin GOARCH=amd64 go build -o .build/osx-amd main.go
- name: Build OSX ARM64
run: mkdir -p .build && CGO_ENABLED=1 GOOS=darwin GOARCH=arm64 go build -o .build/osx-arm main.go