Skip to content

Commit

Permalink
cleaned up unit test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
zackbradys committed Apr 5, 2024
1 parent 6863d91 commit a52d73f
Showing 1 changed file with 13 additions and 19 deletions.
32 changes: 13 additions & 19 deletions .github/workflows/unittest.yaml
Original file line number Diff line number Diff line change
@@ -1,43 +1,37 @@
name: Unit Test Workflow

on:
workflow_dispatch:
push:
paths-ignore:
- '**.md'
- '.github/**'
- '!.github/workflows/unittest.yaml'
branches:
- main
pull_request:
paths-ignore:
- '**.md'
- '.github/**'
- '!.github/workflows/unitcoverage.yaml'
workflow_dispatch: {}
branches:
- main

jobs:
test:
unit-test:
name: Unit Tests
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Go
uses: actions/setup-go@v2

- name: Set Up Go
uses: actions/setup-go@v5
with:
go-version: 1.21.x

- name: Run Unit Tests
run: |
mkdir -p cmd/hauler/binaries
touch cmd/hauler/binaries/dummy.txt
go test -race -covermode=atomic -coverprofile=coverage.out ./pkg/... ./internal/... ./cmd/...
- name: On Failure, Launch Debug Session
if: ${{ failure() }}
uses: mxschmitt/action-tmate@v3
timeout-minutes: 5
- name: Upload Results To Codecov
uses: codecov/codecov-action@v1
with:
files: ./coverage.out
verbose: true # optional (default = false)
timeout-minutes: 10

0 comments on commit a52d73f

Please sign in to comment.