Skip to content

Bump GitHub action versions. #319

Bump GitHub action versions.

Bump GitHub action versions. #319

Workflow file for this run

name: Run CI
on: [pull_request]
jobs:
build:
name: Run CI
runs-on: ubuntu-latest
steps:
- name: Check out the code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
id: go
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
id: go

Check failure on line 23 in .github/workflows/pr.yaml

View workflow run for this annotation

GitHub Actions / Run CI

Invalid workflow file

The workflow is not valid. .github/workflows/pr.yaml (Line: 23, Col: 11): The identifier 'go' may not be used more than once within the same scope.
- name: Make CI
run: make ci
- name: Upload test coverage
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: coverage.out
verbose: true