Skip to content

Support Python 3.11. #150

Support Python 3.11.

Support Python 3.11. #150

Workflow file for this run

name: CI/CD
on:
push:
branches:
- "**"
jobs:
test:
name: Automated checks
strategy:
matrix:
python-version: [3.7]
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
with:
submodules: recursive
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Load environment cache
uses: actions/cache@v2
with:
path: .venv
key: venv-${{ matrix.python-version }}-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }}
- name: Make Host Environment
run: |
make init
- name: Test Source
run: |
make check