kcrypt/.github/workflows/unit-tests.yml
2025-04-16 11:32:18 +02:00

23 lines
438 B
YAML

name: Unit tests
on:
push:
branches:
- master
pull_request:
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Run tests
run: |
go run github.com/onsi/ginkgo/v2/ginkgo ./...