mirror of
https://github.com/denisidoro/navi
synced 2024-11-22 11:33:10 +00:00
26 lines
No EOL
442 B
YAML
26 lines
No EOL
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 |