Skip to content

Support for Python 3.14 #949

Support for Python 3.14

Support for Python 3.14 #949

Workflow file for this run

name: CI

Check failure on line 1 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

(Line: 23, Col: 15): Expected format {org}/{repo}[/path]@ref. Actual 'actions/checkout'
on:
push:
branches:
- dev
- prod
pull_request:
jobs:
ci:
strategy:
matrix:
python-version: ["3.12", "3.13", "3.14"]
name: Continuous Integration ・ Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Run checkout
uses: actions/checkout
- name: Set up environment
uses: ./.github/actions/environment
with:
python-version: ${{ matrix.python-version }}
- name: Check code style
uses: ./.github/actions/code-style
- name: Tests
uses: ./.github/actions/tests