Skip to content

feat: use ubuntu 22.04 as base container #2

feat: use ubuntu 22.04 as base container

feat: use ubuntu 22.04 as base container #2

Workflow file for this run

name: CI
on:
push:
branches:
- main
paths-ignore:
- "**.md"
- LICENSE
pull_request:
paths-ignore:
- "**.md"
- LICENSE
workflow_dispatch:
jobs:
unit-test:
strategy:
matrix:
os-version: ["ubuntu-20.04"]
python-version: ["3.10"]
runs-on: ${{ matrix.os-version }}
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Test
run: |
pip install pre-commit
make lint