Skip to content

Commit

Permalink
ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Borda committed Oct 18, 2024
1 parent bff1a18 commit 8b3c2de
Showing 1 changed file with 56 additions and 0 deletions.
56 changes: 56 additions & 0 deletions .github/workflows/ci-scripts.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
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-22.04", "macos-12", "windows-2022"]
python-version: ["3.8", "3.12"]
timeout-minutes: 35
steps:
- name: Checkout 🛎
uses: actions/checkout@v4
with:
submodules: recursive
- 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

0 comments on commit 8b3c2de

Please sign in to comment.