minTime and maxTime for lotteries (#36 and #32) also delete old DB en… #160
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: GitHub Actions | |
on: [push] | |
jobs: | |
Ubuntu: | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
- run: cd ${{ github.workspace }} | |
- run: pip3 install --break-system-packages -r requirements.txt 2>&1 | |
- run: python -m compileall -q . | |
- run: python3 runtests.py | |
- run: echo "🍏 This job's status is ${{ job.status }}." |