add requests #229
Workflow file for this run
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: Run Tests | |
on: | |
workflow_dispatch: | |
pull_request: | |
types: [opened, reopened, synchronize] | |
branches: | |
- main | |
- develop | |
jobs: | |
test-lint-build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build Docker Image | |
run: make build | |
- name: Check Lint | |
run: make lint CI=true | |
- name: Check Format | |
run: make format CI=true ARGS=--check | |
- name: Run Tests | |
run: make test CI=true | |
- name: Check Image Hashes | |
run: make check-hashes CI=true | |
- name: Build PIP Package | |
run: make flit-build | |
test-python-3-9: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run Tests - Python 3.9 | |
run: make test-3.9 CI=true | |
test-python-3-10: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run Tests - Python 3.10 | |
run: make test-3.10 CI=true | |
test-python-3-11: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run Tests - Python 3.11 | |
run: make test-3.11 CI=true | |
test-python-3-12: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run Tests - Python 3.12 | |
run: make test-3.12 CI=true |