mirror of
https://github.com/kairos-io/kcrypt-challenger.git
synced 2025-05-15 19:29:46 +00:00
23 lines
378 B
YAML
23 lines
378 B
YAML
name: End to end tests
|
|
on:
|
|
push:
|
|
paths-ignore:
|
|
- 'README.md'
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
paths-ignore:
|
|
- 'README.md'
|
|
|
|
jobs:
|
|
e2e-tests:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Run tests
|
|
run: |
|
|
./earthly.sh +e2e-tests
|