Added test.yml for testing all pushes

This commit is contained in:
clowzed 2023-11-10 23:08:02 +03:00
parent faef531d91
commit 2b718fbc21

36
.github/workflows/tests.yml vendored Normal file
View file

@ -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