Added tests #2
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
on: push | |
name: Tests | |
jobs: | |
local-setup: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Checkout code' | |
uses: actions/checkout@v4 | |
- name: 'Setup Docker' | |
uses: docker-practice/actions-setup-docker@master | |
- name: 'Add hosts to /etc/hosts' | |
run: | | |
sudo echo "127.0.0.1 reverse-proxy.test" | sudo tee -a /etc/hosts | |
sudo echo "127.0.0.1 hello-world.test" | sudo tee -a /etc/hosts | |
- name: 'Start reverse proxy with local setup' | |
run: docker-compose -f docker-compose.local.yml up -d && sleep 10 | |
- name: 'Test dashboard' | |
run: curl http://reverse-proxy.test/dashboard/#/ | |
- name: 'Start hello-world example' | |
run: cd examples && docker-compose -f docker-compose.local.yml up -d | |
- name: 'Test hello-world' | |
run: curl http://hello-world.test |