Ids 923 offboarding script can query for project db api for a project #35
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: Test and Lint Python code | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- "**.py" | |
- "pyproject.toml" | |
- "poetry.lock" | |
# Allow manual triggering through GitHub | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.11"] | |
name: Python ${{ matrix.python-version }} | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up SSH key | |
run: | | |
mkdir -p ~/.ssh | |
echo "${{ secrets.SSH_KEY_TO_CERADMIN_COMMON }}" | tr -d '\r' > ~/.ssh/github_actions_key | |
chmod 600 ~/.ssh/github_actions_key | |
ssh-keyscan github.com >> ~/.ssh/known_hosts | |
- name: Configure SSH | |
run: | | |
echo "Host github.com | |
HostName github.com | |
IdentityFile ~/.ssh/github_actions_key | |
User git" >> ~/.ssh/config | |
chmod 600 ~/.ssh/config | |
- name: Debug SSH key | |
run: | | |
ls -l ~/.ssh | |
cat ~/.ssh/known_hosts | |
ssh -vT [email protected] | |
- name: Clone private repository | |
run: git clone [email protected]:UoA-eResearch/ceradmin_common.git | |
- name: Install Poetry | |
uses: snok/install-poetry@v1 | |
- name: Install Dependencies | |
run: poetry install | |
if: steps.cache.outputs.cache-hit != 'true' | |
- name: isort - check import formatting | |
run: PYTHONPATH=src/ poetry run python -m isort --check --diff --profile black src | |
- name: Black - check code formatting | |
run: PYTHONPATH=src/ poetry run python -m black --check --diff src | |
- name: pylint - static code analysis | |
run: PYTHONPATH=src/ poetry run python -m pylint src/ | |
- name: mypy - static type checking | |
# Takes configuration from pyproject.toml | |
run: PYTHONPATH=src/ poetry run python -m mypy | |
# - name: pytest - run the tests | |
# run: PYTHONPATH=src/ poetry run python -m pytest -v --cov=src/ tests/ | |
# - name: Run Coverage | |
# run: PYTHONPATH=src/ poetry run python -m coverage report -m; | |
# - name: Generate test coverage XML Report | |
# run: PYTHONPATH=src/ poetry run python -m coverage xml |