diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2020-07-07 11:02:09 +0530 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2020-07-07 11:02:09 +0530 |
commit | c5302c79039a48d6a5e31a95aecbd00064ec8d35 (patch) | |
tree | e82b7237848ca34812ac811a047401ff04ea1a48 | |
parent | cb55bc151a5b8ca110be68645a261b73ee472c96 (diff) | |
parent | c243d1f192f62e0b5d99e40cca8faf7dbd2178b7 (diff) |
Merge branch 'master' of github.com:navanchauhan/Curie-Web
-rw-r--r-- | .github/workflows/test-database.yaml | 2 | ||||
-rw-r--r-- | .github/workflows/test_backend.yaml | 27 |
2 files changed, 28 insertions, 1 deletions
diff --git a/.github/workflows/test-database.yaml b/.github/workflows/test-database.yaml index 7fe3793..a64715b 100644 --- a/.github/workflows/test-database.yaml +++ b/.github/workflows/test-database.yaml @@ -1,4 +1,4 @@ -name: Python package +name: Test Database on: [push] diff --git a/.github/workflows/test_backend.yaml b/.github/workflows/test_backend.yaml new file mode 100644 index 0000000..ccaa320 --- /dev/null +++ b/.github/workflows/test_backend.yaml @@ -0,0 +1,27 @@ +name: Test Backend + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + strategy: + matrix: + python-version: [3.7] + + steps: + - uses: actions/checkout@v2 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v2 + with: + python-version: ${{ matrix.python-version }} + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install mysql-connector mysql + if [ -f requirements.txt ]; then pip install -r requirements.txt; fi + - name: Fetch Latest Curie-CLI + run: docker pull navanchauhan/curie-cli:latest + - name: Run Database-Filler script + run: cd app && python backend_test.py |