Correctly implement actions #3

Merged
logan merged 8 commits from implement-actions into master 2025-02-23 11:31:30 -05:00
Showing only changes of commit 1de9e9ce1d - Show all commits

View File

@@ -1,30 +0,0 @@
name: Test
on:
push:
branches:
- master
pull_request:
branches:
- "*"
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.x
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
- name: Run tests
run: |
pytest