Skip to content

Commit

Permalink
File to run tests in github added
Browse files Browse the repository at this point in the history
Tereso del Rio committed Sep 23, 2023
1 parent 6191e55 commit eabbdcf
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Run Tests

on: [push]

jobs:
test:
runs-on: windows-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8

- name: Install dependencies
run: |
pip install -r requirements.txt
working-directory: ./UsingDorianFeatures

- name: Run tests
run: |
pytest
working-directory: ./UsingDorianFeatures

0 comments on commit eabbdcf

Please sign in to comment.