Skip to content

build(deps): bump actions/checkout in the github-actions group (#22) #41

build(deps): bump actions/checkout in the github-actions group (#22)

build(deps): bump actions/checkout in the github-actions group (#22) #41

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
permissions: {}
jobs:
test:
permissions:
contents: read
name: Run on Ubuntu
runs-on: ubuntu-latest
steps:
- name: Clone the code
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false
- name: Setup Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version-file: go.mod
- name: Running Tests
run: |
go mod tidy
make test