-
-
Notifications
You must be signed in to change notification settings - Fork 1
34 lines (27 loc) · 669 Bytes
/
ci.yml
File metadata and controls
34 lines (27 loc) · 669 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: CI
on:
push:
branches:
- dev
- prod
pull_request:
jobs:
ci:
strategy:
matrix:
python-version: ["3.12", "3.13", "3.14", "3.14t"]
name: Continuous Integration ・ Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Run checkout
uses: actions/checkout@v6
- 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