Skip to content

constructing the book #34

constructing the book

constructing the book #34

Workflow file for this run

name: "ci"
on:
push
jobs:
test:
# The type of runner that the job will run on
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
python-version: ['3.9', '3.10', '3.11', '3.12' ]
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Set up Git repository
uses: actions/checkout@v4
- uses: ./actions/test
with:
python-version: ${{ matrix.python-version }}
#source-folder: "tests/python"