Finally merge oak-d pipeline dev to main #13
This file contains hidden or 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 workflow will run tests and linters using Python 3.11 | |
| # For more information see: https://docs.github.com/en/actions/about-github-actions | |
| name: Run linter and docker tests | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| # Checkout repository | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| # Set Python version | |
| - name: Set up Python 3.11 | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: 3.11 | |
| # Install tools | |
| - name: Install tools | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install black | |
| # Run linters and formatters | |
| - name: Linters and formatters | |
| run: | | |
| black --check . |