diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml new file mode 100644 index 0000000..dad59d0 --- /dev/null +++ b/.github/workflows/tests.yml @@ -0,0 +1,36 @@ + +name: Running Tests + +on: [push] + +jobs: + test: + runs-on: ubuntu-latest + + services: + postgres: + image: postgres + + env: + POSTGRES_PASSWORD: postgres + POSTGRES_USER: postgres + POSTGRES_DB: postgres + + options: >- + --health-cmd pg_isready + --health-interval 10s + --health-timeout 5s + --health-retries 5 + ports: + - 5432:5432 + + steps: + - uses: actions/checkout@v2 + - name: Build + run: cargo build --verbose + - name: Run tests + run: cargo test --verbose + env: + DATABASE_URL: "postgres://postgres:postgres@localhost:5432/postgres" + PORT: 8080 +