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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the action will run.
on:
push:
branches: [ main ]
# Triggers the workflow on pull request events but only for the master branch
pull_request:
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains two jobs called "test" and "typecheck"
test:
# The type of runner that the job will run on
timeout-minutes: 30
strategy:
matrix:
python-versions: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
os: [ubuntu-latest]
# Uncomment if I need to run it on other environments too (currently
# there's not a huge need)
# os: [ubuntu-20.04, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Checkout
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-versions }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions
- name: test with tox
run: tox
- name: list files
run: ls -l .
typecheck:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install typecheck deps
run: |
python -m pip install --upgrade pip
pip install mypy
- name: Syntax check
run: |
python -m compileall -q dataclass_wizard
- name: mypy
run: |
mypy dataclass_wizard
continue-on-error: true
|