attempt tests
Some checks failed
Test / Test (push) Failing after 36s

This commit is contained in:
John Burwell 2023-05-02 20:51:25 -05:00
parent 643ea7569d
commit 255d8aa81d
2 changed files with 19 additions and 12 deletions

View File

@ -1,12 +0,0 @@
# name: Gitea Actions Demo
# run-name: ${{ github.actor }} is testing out Gitea Actions 🚀
# on: [push]
# jobs:
# Explore-Gitea-Actions:
# runs-on: ubuntu-latest
# steps:
# - name: Check out repository code
# uses: actions/checkout@v3
# - name: List files in the repository
# run: |
# ls ${{ github.workspace }}

View File

@ -0,0 +1,19 @@
name: Test
run-name: ${{ github.actor }} running tests
on: [push]
jobs:
Test:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Install Python 3
uses: actions/setup-python@v1
with:
python-version: 3.10
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .
- name: Run tests
run: python -m unittest