Skip to content

README画像とBOOTH購入者向け利用ガイドを追加 #3

README画像とBOOTH購入者向け利用ガイドを追加

README画像とBOOTH購入者向け利用ガイドを追加 #3

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
permissions:
contents: read
concurrency:
group: tests-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.12", "3.14"]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install dependencies
run: python -m pip install -r requirements.txt
- name: Run unit tests
run: python -m unittest discover -v
- name: Check Python compilation
run: python -m compileall -q main.py syntax_helper tests