mirror of
https://github.com/kennethreitz/requests3.git
synced 2026-06-21 15:30:58 +00:00
15 lines
395 B
YAML
15 lines
395 B
YAML
# Use the latest 2.1 version of CircleCI pipeline processing engine, see https://circleci.com/docs/2.0/configuration-reference/
|
|
version: 2.1
|
|
|
|
jobs:
|
|
build:
|
|
docker:
|
|
- image: circleci/python:3.6.2-stretch-browsers
|
|
steps:
|
|
- checkout
|
|
- setup_remote_docker:
|
|
docker_layer_caching: true
|
|
|
|
# Run the tests:
|
|
- run: docker-compose up --exit-code-from tests
|