Skip to content

Commit

Permalink
Github Actionsで自動テスト
Browse files Browse the repository at this point in the history
  • Loading branch information
HiraiKyo committed Aug 8, 2024
1 parent 1ea0fd4 commit 0e0b0d3
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Python Package

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8"]

steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: |
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python -
echo "$HOME/.poetry/bin" >> $GITHUB_PATH
- name: Poetry Version
run: |
poetry --version
- name: Poetry Install Dependencies
run: |
poetry install --no-interaction
- name: Run tests with pytest
run: |
poetry run pytest
- name: Run type checking with mypy
run: |
poetry run mypy ply_processor
- name: Run linting with ruff
run: |
poetry run ruff ply_processor

0 comments on commit 0e0b0d3

Please sign in to comment.