chore(ver): bump 1.5.43 --> 1.5.44. #254
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-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@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
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' |