Bump dependencies including Go 1.24 and skip new lint failures for now #883
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run tests | |
on: [ push, pull_request ] | |
jobs: | |
test: | |
strategy: | |
matrix: | |
platform: [ "ubuntu-latest" ] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Test | |
run: make -f Makefile.all test GOFLAGS="-v" |