mirror of
https://github.com/kairos-io/kcrypt-challenger.git
synced 2025-04-27 03:20:56 +00:00
20 lines
306 B
YAML
20 lines
306 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@v3
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Run tests
|
|
run: |
|
|
./earthly.sh +test
|