Run tests #265
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run tests | |
on: | |
schedule: | |
# Run every day at 3:00 AM | |
- cron: '0 3 * * *' | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- '**.go' | |
- '.github/workflows/run-tests.yml' | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: '>=1.21.0' | |
- name: Install local environment | |
id: setup-local | |
run: | | |
cd scripts/local | |
chmod +x ./setup.sh && ./setup.sh -y --configure-dns | |
cd ../.. | |
ls -la | |
- name: Export configuration file path | |
run: echo "DEPLOY_CONFIG_FILE=config.local.yml" >> $GITHUB_ENV | |
- name: Run acceptance tests | |
run: | | |
go test -timeout 90m ./test/acc/... | |
- name: Start main program | |
run: | | |
go build -o go-deploy . # Build go-deploy | |
./go-deploy --mode=test & # Starts in the background | |
# Wait for the API to return 200 on /healthz | |
until $(curl --output /dev/null --silent --head --fail http://localhost:8080/healthz); do | |
echo "Waiting for API to start" | |
sleep 1 | |
done | |
- name: Run e2e tests (VMs) | |
run: go test -timeout 90m ./test/e2e/v2/gpu_groups ./test/e2e/v2/gpu_leases ./test/e2e/v2/vms | |
- name: Run e2e tests (Deployments) | |
run: go test -timeout 90m ./test/e2e/v2/deployments | |
- name: Run e2e tests (SMs) | |
run: go test -timeout 90m ./test/e2e/v2/sms | |
- name: Run e2e tests (Jobs) | |
run: go test -timeout 90m ./test/e2e/v2/jobs | |
- name: Run e2e tests (Resource Migrations) | |
run: go test -timeout 90m ./test/e2e/v2/resource_migrations | |
- name: Run e2e tests (Users) | |
run: go test -timeout 90m ./test/e2e/v2/users ./test/e2e/v2/teams ./test/e2e/v2/notifications | |
- name: Run e2e tests (System) | |
run: go test -timeout 90m ./test/e2e/v2/zones |