mirror of
https://github.com/denisidoro/navi.git
synced 2024-11-14 14:56:41 +03:00
26 lines
442 B
YAML
26 lines
442 B
YAML
# Clojure CircleCI 2.0 configuration file
|
|
#
|
|
# Check https://circleci.com/docs/2.0/language-clojure/ for more details
|
|
#
|
|
version: 2
|
|
|
|
job_defaults: &defaults
|
|
docker:
|
|
- image: frolvlad/alpine-bash
|
|
working_directory: ~/repo
|
|
environment:
|
|
ENVIRONMENT: "test"
|
|
TERM: "dumb"
|
|
|
|
jobs:
|
|
tests:
|
|
<<: *defaults
|
|
steps:
|
|
- checkout
|
|
- run: ./test/run
|
|
|
|
workflows:
|
|
version: 2
|
|
run-tests:
|
|
jobs:
|
|
- tests |