diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d07b568d2..aa7a69e9a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,11 +1,16 @@ name: runTestsAndLinters on: [push, pull_request] +permissions: + contents: read + # Write is needed for golangci-lint annotations + checks: write + jobs: test: strategy: matrix: - go: [ "1.23", "1.22" ] + go: [ "1.24", "1.23", "1.22" ] os: [ ubuntu-24.04, ubuntu-22.04 ] name: Tests Go ${{ matrix.go }} on ${{ matrix.os }} # This name is used in main branch protection rules runs-on: ${{ matrix.os }} @@ -17,11 +22,11 @@ jobs: echo -n "mysqldump -V: " ; mysqldump -V echo -e '[mysqld]\nserver-id=1\nlog-bin=mysql\nbinlog-format=row\ngtid-mode=ON\nenforce_gtid_consistency=ON\n' | sudo tee /etc/mysql/conf.d/replication.cnf - + # bind to :: for dual-stack listening sudo sed -i 's/bind-address.*= 127.0.0.1/bind-address = ::/' /etc/mysql/mysql.conf.d/mysqld.cnf sudo sed -i 's/mysqlx-bind-address.*= 127.0.0.1/mysqlx-bind-address = ::/' /etc/mysql/mysql.conf.d/mysqld.cnf - + sudo service mysql start # apply this for mysql5 & mysql8 compatibility @@ -78,7 +83,7 @@ jobs: - name: Install Go uses: actions/setup-go@v5 with: - go-version: "1.23" + go-version: stable - name: Run tests run: | # separate test to avoid RESET MASTER conflict @@ -91,6 +96,9 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 + - uses: actions/setup-go@v5 + with: + go-version: stable - name: golangci-lint uses: golangci/golangci-lint-action@v6 with: @@ -113,7 +121,7 @@ jobs: - name: Install Go uses: actions/setup-go@v5 with: - go-version: "1.23" - + go-version: stable + - name: Build on ${{ matrix.os }}/${{ matrix.arch }} run: GOARCH=${{ matrix.arch }} GOOS=${{ matrix.os }} go build ./... diff --git a/.golangci.yml b/.golangci.yml index 11b32fa40..4a08e533b 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -21,7 +21,6 @@ linters: linters-settings: nolintlint: allow-unused: false - allow-leading-space: false require-specific: true govet: