Skip to content

Commit

Permalink
Create ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
tomhamiltonstubber authored Jun 16, 2020
1 parent a481535 commit 62cb2e5
Showing 1 changed file with 55 additions and 0 deletions.
55 changes: 55 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
name: CI

on:
push:
branches:
- master
tags:
- '**'
pull_request: {}

jobs:
test:
runs-on: ubuntu-latest

services:
postgres:
image: postgres:12
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: socket_test
ports:
- 5432:5432
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
redis:
image: redis
ports:
- 6379:6379
options: --entrypoint redis-server

env:
DATABASE_URL: 'postgres://postgres:postgres@localhost:5432/socket_test'

steps:
- uses: actions/checkout@v2

- name: set up python
uses: actions/setup-python@v1
with:
python-version: '3.8'

- name: install dependencies
run: |
make install
pip freeze
- name: lint
run: make lint

- name: test
run: make test

- name: codecov
run: bash <(curl -s https://codecov.io/bash)
env:
CODECOV_TOKEN: '8f06c81f-01b9-4803-9b84-40c45bf7ff17'

0 comments on commit 62cb2e5

Please sign in to comment.