Skip to content

Bump actions/download-artifact from 2 to 4.1.7 in /.github/workflows #340

Bump actions/download-artifact from 2 to 4.1.7 in /.github/workflows

Bump actions/download-artifact from 2 to 4.1.7 in /.github/workflows #340

Workflow file for this run

name: CI
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
jobs:
validations:
name: Post-Test Checks
runs-on: windows-latest
strategy:
max-parallel: 4
matrix:
task: [docs, static]
include:
- task: static
posargs: --no-cache -o ./statue-report.json
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox
- name: Run Post-Test check
run: |
tox -e ${{ matrix.task }} -- ${{ matrix.posargs }}
- uses: actions/upload-artifact@v2
if: matrix.task == 'static'
with:
name: statue-report
path: ./statue-report.json