Skip to content

Bump github.com/opslevel/opslevel-go/v2023 from 2023.9.12 to 2023.11.16 in /src #258

Bump github.com/opslevel/opslevel-go/v2023 from 2023.9.12 to 2023.11.16 in /src

Bump github.com/opslevel/opslevel-go/v2023 from 2023.9.12 to 2023.11.16 in /src #258

Workflow file for this run

name: Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: 'true'
- name: Fetch all tags
run: git fetch --force --tags
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: 'src/go.mod'
- name: Run Tests
run: |-
cd src/
go test -race -coverprofile=coverage.txt -covermode=atomic -v ./...
- name: Upload Coverage
run: |-
cd src/
bash <(curl -s https://codecov.io/bash)