Skip to content

bump: 1.0.3 and Update documentation URL in README.md #3

bump: 1.0.3 and Update documentation URL in README.md

bump: 1.0.3 and Update documentation URL in README.md #3

name: Python Pull Request Check
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
checking-pr:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests
run: |
python -m unittest ./tests/test_multiform_validator.py