1
0
mirror of https://github.com/kairos-io/kcrypt.git synced 2025-05-12 10:27:27 +00:00
kcrypt/.github/workflows/unit-tests.yml
2023-12-15 15:49:01 +00:00

27 lines
498 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@v3
with:
go-version: '^1.20'
- name: Install Ginkgo
run: go install github.com/onsi/ginkgo/v2/ginkgo@v2.5.0
- name: Run tests
run: |
ginkgo run ./...