Skip to content

22 time and date module #21

22 time and date module

22 time and date module #21

Workflow file for this run

name: PR Review
on:
pull_request:
branches:
- main
types: [opened, synchronize, reopened]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.12]
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r dev-requirements.txt
pip install .
- name: Run tests
run: |
pip install pytest
pre-commit run --all-files
#TODO! Build job
#TODO! Security scans job