Skip to content

chore(ver): bump 1.5.6 --> 1.5.7. #148

chore(ver): bump 1.5.6 --> 1.5.7.

chore(ver): bump 1.5.6 --> 1.5.7. #148

Workflow file for this run

name: build-core
on:
schedule:
- cron: '0 11 11 * *'
push:
branches: [ master, dev ]
jobs:
run-tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
extra: [ base ]
python-version: [ '3.8', '3.9', '3.10' ]
env:
EXTRAS: ${{ matrix.extra }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Test Dependencies
run: pip install -r requirements/test.pip
- name: Build/Install wheel
run: export ENABLE_SETUP_CORE="TRUE" && pip install wheel && python setup.py bdist_wheel && WHEEL=$(find dist/schedula_core*.whl) && pip install $WHEEL --no-dependencies --no-cache-dir
- name: Run Test
run: python -m unittest discover -s tests -p 'test_*.py'