Automated Latest Dependency Updates #607
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
on: | |
pull_request: | |
types: [opened, synchronize] | |
push: | |
branches: | |
- main | |
name: Lint Check | |
jobs: | |
lint_test: | |
name: ${{ matrix.python_version }} lint check | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python_version: ["3.11"] | |
steps: | |
- name: Set up python ${{ matrix.python_version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python_version }} | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.ref }} | |
repository: ${{ github.event.pull_request.head.repo.full_name }} | |
- name: Build compose package | |
run: make package | |
- name: Install compose with dev, and test requirements | |
run: | | |
pip config --site set global.progress_bar off | |
python -m pip install --upgrade pip | |
python -m pip install .[dev] | |
- name: Run lint test | |
run: make lint |