update CI names and path

move docker-compose to new folder
rename action names
This commit is contained in:
Michael C
2021-06-23 15:39:39 -04:00
parent da92f2082d
commit b62db5675d
3 changed files with 5 additions and 5 deletions

View File

@@ -1,11 +1,10 @@
name: CI
name: SQLite CI
on: [push, pull_request]
jobs:
build:
name: Run Tests
name: Run Tests with SQLite
runs-on: ubuntu-latest
steps:

View File

@@ -1,9 +1,10 @@
name: Docker Image CI
name: PostgreSQL CI
on: [push, pull_request]
jobs:
build:
name: Run Tests with PostgreSQL
runs-on: ubuntu-latest
steps:
@@ -12,7 +13,7 @@ jobs:
env:
PG_USER: ci_db_user
PG_PASS: ci_db_pass
run: docker-compose up -d
run: docker-compose -f docker/docker-compose-ci.yml up -d
- name: Sleep
uses: jakejarvis/wait-action@master
with: