Skip to content

fix(deps): update all dependencies #99

fix(deps): update all dependencies

fix(deps): update all dependencies #99

Workflow file for this run

name: Tests
on:
push:
branches: [ "master" ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ "master" ]
# Builds images for target boards.
permissions:
contents: read
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.25']
timeout-minutes: 10
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: Setup Go ${{ matrix.go }}
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version: ${{ matrix.go }}
- name: Cache tools
uses: actions/cache@v5
with:
path: |
./.tools
key: ${{ runner.os }}-aptre-tools-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-aptre-tools-
- name: Test Go
run: make test
- name: Lint Go
run: make lint