Skip to content

Commit

Permalink
Merge pull request #24 from jptomoya/improve-ci
Browse files Browse the repository at this point in the history
Test across Python 3.8 or later in GitHub Actions workflow
  • Loading branch information
ptr-yudai authored Feb 19, 2024
2 parents 4759101 + 596342a commit fa9df75
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions .github/workflows/test-on-pr.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,30 @@
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions

name: Python application
name: Python Test (Ubuntu)

on: [push, pull_request]

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Test with pytest
run: |
python -m unittest
echo '```' >> $GITHUB_STEP_SUMMARY
python -m unittest &>> $GITHUB_STEP_SUMMARY
echo '```' >> $GITHUB_STEP_SUMMARY

0 comments on commit fa9df75

Please sign in to comment.