File tree 6 files changed +25
-15
lines changed
6 files changed +25
-15
lines changed Original file line number Diff line number Diff line change
1
+ name : Elixir CI
2
+
3
+ on :
4
+ push :
5
+ branches : [ master ]
6
+ pull_request :
7
+ branches : [ master ]
8
+
9
+ jobs :
10
+ build_and_test :
11
+
12
+ name : Build and test
13
+ runs-on : ubuntu-latest
14
+
15
+ steps :
16
+ - uses : actions/checkout@v2
17
+ - name : Build the Docker image
18
+ run : docker build . --file Dockerfile --tag waffle
19
+
20
+ - name : Run linters
21
+ run : docker run waffle_ecto mix credo --strict
22
+
23
+ - name : Run tests
24
+ run : docker run waffle_ecto mix test
File renamed without changes.
Original file line number Diff line number Diff line change 1
1
# Waffle
2
2
3
- [ ![ Codeship Status for elixir-waffle/waffle] [ codeship-img ]] [ codeship-url ]
4
3
[ ![ Hex.pm Version] [ hex-img ]] [ hex-url ]
5
4
[ ![ waffle documentation] [ hexdocs-img ]] [ hexdocs-url ]
6
5
7
- [ codeship-img ] : https://app.codeship.com/projects/182a04b0-aa53-0137-1d00-2259d5318dee/status?branch=master
8
- [ codeship-url ] : https://app.codeship.com/projects/361668
9
6
[ hex-img ] : http://img.shields.io/hexpm/v/waffle.svg
10
7
[ hex-url ] : https://hex.pm/packages/waffle
11
8
[ hexdocs-img ] : http://img.shields.io/badge/hexdocs-documentation-brightgreen.svg
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ services:
3
3
waffle :
4
4
build :
5
5
context : .
6
- dockerfile : Dockerfile.codeship
6
+ dockerfile : Dockerfile
7
7
command : tail -f /dev/null
8
8
env_file :
9
9
- .env
You can’t perform that action at this time.
0 commit comments