Skip to content

Create jekyll-gh-pages.yml #43

Create jekyll-gh-pages.yml

Create jekyll-gh-pages.yml #43

Workflow file for this run

on: [push, pull_request]
name: Tests
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.9', '3.10', '3.11' ]
steps:
- name: Clone and checkout branch
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Build project
run: make
- name: Run tests
run: make test