Merge pull request #14 from artemis-beta/dependabot/pip/gitpython-3.1.34 #25
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: python3.9 | |
on: [push] | |
jobs: | |
build: | |
name: Ubuntu (Python3.9) | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Python 3.9 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
- name: Install Poetry | |
run: python -m pip install poetry | |
- name: Install Enigma | |
run: poetry install | |
- name: Run Unit Tests | |
run: poetry run pytest | |