Skip to content

build(deps): bump the ci group across 1 directory with 10 updates #445

build(deps): bump the ci group across 1 directory with 10 updates

build(deps): bump the ci group across 1 directory with 10 updates #445

Workflow file for this run

name: tests
on:
pull_request:
paths-ignore:
- 'README.md'
- 'MAINTAINERS'
push:
branches:
- main
permissions:
contents: read # for actions/checkout to fetch code
jobs:
test-linux-amd64:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Restore Go cache
uses: actions/cache@v4
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: '${{ github.workspace }}/go.mod'
- name: Run tests
run: make test