Skip to content

Commit 2aeee72

Browse files
committed
projects currently running on CircleCI 1.0 will no longer be supported after August 31, 2018.Upgrading to CircleCI 2.0.
1 parent 63568e8 commit 2aeee72

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.circleci/config.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
version: 2
2+
jobs:
3+
build:
4+
machine: true
5+
steps:
6+
- checkout
7+
- run:
8+
name:
9+
command: |
10+
sudo apt-get -y update
11+
sudo apt-get -y install shellcheck git
12+
13+
- run: git clone --depth 1 https://github.com/sstephenson/bats.git
14+
- run: git submodule update --init
15+
- run:
16+
name: tests
17+
command: |
18+
printenv
19+
export TERM=dumb && bats/bin/bats test/*.bats
20+
shellcheck *.sh
21+

0 commit comments

Comments
 (0)