Skip to content

ci: Upgrade checkout to v6.0.3 and patch-pin setup-python to v6.2.0 (… #734

ci: Upgrade checkout to v6.0.3 and patch-pin setup-python to v6.2.0 (…

ci: Upgrade checkout to v6.0.3 and patch-pin setup-python to v6.2.0 (… #734

Workflow file for this run

name: CI
on: [push]
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
name: Python ${{ matrix.python }} tests
strategy:
matrix:
python: ['3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v6.0.3
- name: Setup python
uses: actions/setup-python@v6.2.0
with:
python-version: ${{ matrix.python }}
- run: ./scripts/build
- run: ./scripts/test
buildall:
if: ${{ always() }}
runs-on: ubuntu-latest
name: Build (matrix)
needs: build
steps:
- name: Check build matrix status
if: ${{ needs.build.result != 'success' }}
run: exit 1