Skip to content

dependabot[bot] go test unit πŸš€ #7

dependabot[bot] go test unit πŸš€

dependabot[bot] go test unit πŸš€ #7

Workflow file for this run

---
name: Go test unit
run-name: ${{ github.actor }} go test unit πŸš€
on:
push:
branches: [master, main]
paths:
- go.*
- "*.go"
- ./pkg
- ./cmd
- ./.github
pull_request:
branches: [master, main]
paths:
- go.*
- "*.go"
- ./pkg
- ./cmd
- ./.github
workflow_dispatch:
release:
types:
- published
jobs:
Explore-GitHub-Actions:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: '>=1.18.0'
- run: go version
- run: make install_ginkgo
- run: make test