fix: dev-requirements-2.9.txt to reduce vulnerabilities #124
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: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: Install requirements | |
run: pip install flake8 pycodestyle | |
- name: Check syntax | |
run: flake8 | |
test: | |
needs: lint | |
strategy: | |
fail-fast: false | |
matrix: | |
ckan-version: ["2.10", 2.9, 2.9-py2] | |
name: CKAN ${{ matrix.ckan-version }} | |
runs-on: ubuntu-latest | |
container: drevops/ci-builder | |
env: | |
CKAN_VERSION: ${{ matrix.ckan-version }} | |
steps: | |
- uses: actions/checkout@v3 | |
timeout-minutes: 2 | |
- name: Build | |
run: bin/build.sh | |
timeout-minutes: 15 | |
- name: Unit test | |
run: bin/test.sh | |
timeout-minutes: 10 | |
- name: Scenario test | |
run: bin/test-bdd.sh | |
timeout-minutes: 30 | |
- name: Retrieve logs | |
if: failure() | |
run: ahoy logs | |
timeout-minutes: 5 | |
- name: Retrieve screenshots | |
if: failure() | |
run: bin/process-artifacts.sh | |
timeout-minutes: 1 | |
- name: Upload screenshots | |
if: failure() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: CKAN ${{ matrix.ckan-version }} screenshots | |
path: /tmp/artifacts/behave/screenshots | |
timeout-minutes: 1 |