CI #586
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
# This is a basic workflow to help you get started with Actions | |
name: CI | |
# Controls when the action will run. | |
on: | |
# Triggers the workflow on push or pull request events but only for the master branch | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
schedule: | |
# Weekly build to make sure dependencies are OK | |
- cron: '30 16 * * 3' | |
jobs: | |
checks: | |
runs-on: ubuntu-latest | |
steps: | |
# Checkout, fetch-depth=0 fetches the full repos (required for automatic versioning to work) | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python 3.12 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.12 | |
- name: Check build and install | |
run: | | |
pip install setuptools | |
python3 setup.py sdist | |
pip install dist/*.tar.gz | |
- run: docker pull bitcraze/builder | |
- name: CI checks | |
run: docker run --rm -v ${PWD}:/module bitcraze/builder ./tools/build/build |