Skip to content

Explicitly declare the UTF-8 charset for json responses (#1231) #26

Explicitly declare the UTF-8 charset for json responses (#1231)

Explicitly declare the UTF-8 charset for json responses (#1231) #26

Workflow file for this run

name: Docker CI
on:
push:
jobs:
docker:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Start containers
run: docker-compose up -d redis postgres
- name: Build image
run: docker-compose build
- name: Run tests
run: docker-compose run spec
- name: Stop containers
if: always()
run: docker-compose down