Skip to content

build: 이미지 빌드시 python 3.11 사용 #8

build: 이미지 빌드시 python 3.11 사용

build: 이미지 빌드시 python 3.11 사용 #8

Workflow file for this run

name: Run Unit Test
on:
push:
branches: [ main, feat/*, fix/*, test/* ]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install
- name: Run tests
run: |
poetry run pytest