Update dependency org.jenkins-ci.main:jenkins-core to v2.485 #645
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: Tests | |
on: | |
push: | |
branches: | |
- 'master' | |
pull_request: | |
paths: | |
- '*gradle*' | |
- '.github/workflows/test.yml' | |
- '.groovylintrc.json' | |
- '.pre-commit-config.yaml' | |
- 'jobs/**' | |
- 'src/**' | |
- 'tests/**' | |
- 'docker/**' | |
jobs: | |
linting: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
- name: Run FOSSA scan and upload build data | |
uses: fossa-contrib/fossa-action@v1.2.0 | |
with: | |
fossa-api-key: 7c94ee8610054ec8084c954b58615e0e | |
- name: Set up Python | |
uses: actions/setup-python@v3 | |
- name: Python Cache | |
uses: actions/cache@v3 | |
with: | |
path: ${{ env.pythonLocation }} | |
key: ${{ env.pythonLocation }}-${{ hashFiles('tests/requirements.txt') }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install --upgrade --upgrade-strategy eager -r tests/requirements.txt | |
- name: Run pre-commit | |
run: | | |
pre-commit run --all-files | |
tests: | |
name: Functional | |
needs: linting | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v3 | |
- name: Python Cache | |
uses: actions/cache@v3 | |
with: | |
path: ${{ env.pythonLocation }} | |
key: ${{ env.pythonLocation }}-${{ hashFiles('tests/requirements.txt') }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install --upgrade --upgrade-strategy eager -r tests/requirements.txt | |
- name: Set Swap Space | |
uses: pierotofy/set-swap-space@master | |
with: | |
swap-size-gb: 10 | |
- name: Test with pytest | |
run: pytest |