bayanat v1.34.5 #9
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
# test compose setup | |
name: Bayanat tests | |
on: [push] | |
jobs: | |
test: | |
runs-on: ubuntu-22.04 | |
services: | |
docker: | |
image: docker:latest | |
options: --privileged | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Create .env file | |
run: | | |
./gen-env.sh -d -e .env.test | |
- name: Bayanat Tests | |
run: docker compose -f docker-compose-test.yml --env-file .env.test up --build --exit-code-from bayanat |