Skip to content

Commit

Permalink
build(workflows): add GitHub Actions for unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
EtienneM committed Feb 24, 2023
1 parent 839457d commit d33caec
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Unit Tests for Scalingo Go SDK

on: [push]

jobs:
tests:
name: Unit Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version-file: "go.mod"
check-latest: true
cache: true
- name: Execute the tests
run: go test -race ./...

0 comments on commit d33caec

Please sign in to comment.