commit 306cc31f0d4139c47a565ed5d66b5990d97c35d5 parent 939d64db5c7b29462db9877a138e918fa890e5c5 Author: Asher Morgan <59518073+ashermorgan@users.noreply.github.com> Date: Tue, 26 Mar 2024 13:34:54 -0700 Setup GitHub Actions Diffstat:
| A | .github/workflows/main.yml | | | 23 | +++++++++++++++++++++++ |
1 file changed, 23 insertions(+), 0 deletions(-)
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml @@ -0,0 +1,23 @@ +name: Test Python Application + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + test: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + - name: Set up Python + uses: actions/setup-python@v2 + + - name: Install dependencies + run: pip install -r requirements.txt + + - name: Run tests with unittest + run: python -m unittest