Skip to content

chore(deps): Update github-actions to v7 #153

chore(deps): Update github-actions to v7

chore(deps): Update github-actions to v7 #153

Workflow file for this run

name: Tests
on:
pull_request: {}
jobs:
test:
name: Test
runs-on: runs-on=${{ github.run_id }}/runner=2cpu-linux-x64/cache=/var/cache/magic/extras=magic-cache
steps:
- name: Setup RunsOn magic cache
uses: runs-on/action@v2
- name: Clone the code
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
- name: Setup Go
uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6
with:
go-version-file: go.mod
cache: true
- name: Running Tests
run: |
go mod tidy
make test
- name: Report coverage
run: make cover