This repository has been archived by the owner on Jan 24, 2025. It is now read-only.
Add CI workflow for nightly docker network tests #3
Workflow file for this run
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: Docker Network Tests | |
on: | |
push: | |
# schedule: | |
# - cron: '0 1 * * *' # Runs every day at 1 AM | |
jobs: | |
test: | |
runs-on: self-hosted | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Set up Docker | |
uses: docker/setup-buildx-action@v3 | |
- name: Run all tests | |
run: | | |
cd tools/docker-network/tests && | |
./run_tests.sh |