Skip to content

Commit

Permalink
Merge pull request #9 from Moujuruo/UltramarineW-patch-1
Browse files Browse the repository at this point in the history
Create main.yml
  • Loading branch information
Moujuruo authored May 23, 2024
2 parents 69ea9e5 + de51b85 commit 91a7438
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# .github/workflows/python-app.yml
name: Python application test

on: [push]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r backend/requirements.txt
- name: Run tests
run: |
python -m unittest backend/test/test_app.py

0 comments on commit 91a7438

Please sign in to comment.