Skip to content

Merge pull request #82 from kd-it/main #1

Merge pull request #82 from kd-it/main

Merge pull request #82 from kd-it/main #1

Workflow file for this run

on:
push:
paths: "lesson02/*.py"
branches:
- main
workflow_dispatch:
jobs:
# code check
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python(3.12)
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: code check in lesson02
run: |
cd lesson02
python typecheck01.py
- name: code check in lesson02(is_int_list)
if: always()
run: |
cd lesson02
python typecheck02.py