scheduled-daily #124
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: scheduled | |
on: | |
schedule: | |
- cron: '3 14 * * *' | |
concurrency: | |
group: 'ci-${{ github.workflow }}-${{ github.ref }}' | |
cancel-in-progress: true | |
jobs: | |
unittests: | |
strategy: | |
matrix: | |
toxenv: [ hypothesis-slow ] | |
name: unittest / ${{ matrix.toxenv }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
# Fetch all tags for tools/read-version | |
fetch-depth: 0 | |
- name: Install dependencies | |
env: | |
DEBIAN_FRONTEND: noninteractive | |
run: | | |
sudo apt-get -qy update | |
sudo apt-get -qy install tox | |
- name: Run fuzztest | |
env: | |
PYTEST_ADDOPTS: -v | |
HYPOTHESIS_PROFILE: ci | |
run: tox -e ${{ matrix.toxenv }} |