Skip to content

Merge pull request #747 from recurly/v3-v2021-02-25-27643113361 #743

Merge pull request #747 from recurly/v3-v2021-02-25-27643113361

Merge pull request #747 from recurly/v3-v2021-02-25-27643113361 #743

Workflow file for this run

name: CI
on: [push]
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