Skip to content

개발용 라이브러리 변경 및 설정 파일 수정 #101

개발용 라이브러리 변경 및 설정 파일 수정

개발용 라이브러리 변경 및 설정 파일 수정 #101

Workflow file for this run

name: Run pytest
on: [push]
jobs:
test:
strategy:
matrix:
python-version: ["3.11"]
poetry-version: ["1.4"]
os: [ubuntu-20.04]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python -
- name: Install dependencies
run: |
poetry install
- name: Test
run: |
poetry run pytest