Skip to content
This repository has been archived by the owner on Nov 26, 2023. It is now read-only.

Fix deprecation issues with pyproject file #23

Fix deprecation issues with pyproject file

Fix deprecation issues with pyproject file #23

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