Skip to content

chore(main): release 0.7.0-alpha #447

chore(main): release 0.7.0-alpha

chore(main): release 0.7.0-alpha #447

Workflow file for this run

name: Unit Tests
on:
push:
branches: [ '*' ]
paths-ignore:
- '**/*.yml'
- '**/*.md'
- '**/*.yml'
- 'LICENSE'
- '.gitignore'
- '.editorconfig'
- 'docs/**'
- '.github/ISSUE_TEMPLATE/**'
- 'examples/**'
- 'website/**'
- '.vscode/**'
- '.idea/**'
- '**/*.txt'
- '**/*.png'
- '**/*.jpg'
- '**/*.svg'
- '.golangci.yml'
- 'Makefile'
- 'scripts/**'
- '.dockerignore'
- 'dockerfile'
jobs:
test:
name: '🧪 Run Unit Tests'
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@v2.10.2
with:
egress-policy: audit
- uses: actions/checkout@v4.2.2
- uses: actions/setup-go@v5.2.0
with:
go-version-file: 'go.mod'
cache: true
go-version: stable
- name: Install dependencies
run: go mod download
- name: Run tests
run: go test -v -race -coverprofile=coverage.txt -covermode=atomic ./...