Skip to content

Merge pull request #2 from vitsalis/main #11

Merge pull request #2 from vitsalis/main

Merge pull request #2 from vitsalis/main #11

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches:
- main
jobs:
Test:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install Dependencies
run: |
pip3 install mock
- name: Run Tests
run: make test