Skip to content

fix(shell/windows): Before setting the PATH environment variable, cre… #166

fix(shell/windows): Before setting the PATH environment variable, cre…

fix(shell/windows): Before setting the PATH environment variable, cre… #166

Workflow file for this run

name: Test and coverage
on: [push, pull_request]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.23.0'
- name: Gather dependencies
run: go mod download
- name: Run coverage
run: go test -race -coverprofile=coverage.txt -covermode=atomic ./...
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}