Skip to content

Merge pull request #248 from foqc/patch-ptyhon-version-support #16

Merge pull request #248 from foqc/patch-ptyhon-version-support

Merge pull request #248 from foqc/patch-ptyhon-version-support #16

Workflow file for this run

name: CI/CD
on:
push:
branches:
- "**"
jobs:
test:
name: Automated checks
strategy:
matrix:
python-version: [3.8]
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Make Host Environment
run: |
make init
- name: Test Source
run: |
make format-check type-check lint-check test