Skip to content

Updating test dependencies, pinning them, and dependabot #84

Updating test dependencies, pinning them, and dependabot

Updating test dependencies, pinning them, and dependabot #84

Workflow file for this run

on:
pull_request:
push:
branches:
- master
name: Linux Tests
jobs:
test:
strategy:
matrix:
go-version: [1.24.x, 1.25.x, 1.26.x]
platform:
- ubuntu-latest
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Lint
run: make lint
- name: Install dependencies
run: sudo apt install subversion mercurial bzr
- name: Test
run: make test