Skip to content

ci: bump upload/download artifact v4 [1/2] #110

ci: bump upload/download artifact v4 [1/2]

ci: bump upload/download artifact v4 [1/2] #110

Workflow file for this run

name: Test scripts
on:
push:
branches: [main, "release/*"]
pull_request:
branches: [main, "release/*"]
defaults:
run:
shell: bash
jobs:
test-scripts:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
python-version: ["3.10"]
timeout-minutes: 15
steps:
- name: Checkout 🛎
uses: actions/checkout@v4
- name: Set up Python 🐍 ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
- name: Install dependencies
timeout-minutes: 5
run: |
pip install -r requirements/_tests.txt
pip --version
pip list
- name: test Scripts
working-directory: ./scripts
run: pytest . -v
scripts-guardian:
runs-on: ubuntu-latest
needs: test-scripts
if: always()
steps:
- run: echo "${{ needs.test-scripts.result }}"
- name: failing...
if: needs.test-scripts.result == 'failure'
run: exit 1
- name: cancelled or skipped...
if: contains(fromJSON('["cancelled", "skipped"]'), needs.test-scripts.result)
timeout-minutes: 1
run: sleep 90