remove packaging. #284
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: Build | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: '0 0 * * 0' | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.9' | |
- name: Set up environment | |
run: | | |
pip install -r requirements.txt | |
./rename.py travis | |
./sslcert jenkins/sslcert localhost | |
./sslcert nginx/sslcert localhost | |
- name: Display Docker version | |
run: docker version | |
- name: Build | |
run: docker compose -f docker-compose.yml build | |
- name: Run tests | |
run: ./runtest.sh |