File tree Expand file tree Collapse file tree 4 files changed +28
-18
lines changed
Expand file tree Collapse file tree 4 files changed +28
-18
lines changed Original file line number Diff line number Diff line change 1+ name : Elixir CI
2+
3+ on : push
4+
5+ jobs :
6+ build :
7+ runs-on : ubuntu-latest
8+
9+ container :
10+ image : elixir:1.9.1-slim
11+
12+ steps :
13+ - uses : actions/checkout@v1
14+
15+ - name : Install Dependencies
16+ run : bin/setup
17+ env :
18+ CI : 1
19+ MIX_ENV : test
20+
21+ - name : Run Tests
22+ run : bin/test
23+ env :
24+ CI : 1
25+ MIX_ENV : test
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11# plug_content_security_policy
22
3- [ ![ Build Status] (https://secure.travis-ci.org/xtian/plug_content_security_policy.svg?branch=master
4- "Build Status")] ( https://travis-ci.org/xtian/plug_content_security_policy )
53[ ![ Hex] ( https://img.shields.io/hexpm/v/plug_content_security_policy.svg )] ( https://hex.pm/packages/plug_content_security_policy )
64
75This is a [ Plug] [ plug ] module for inserting a [ Content Security Policy] [ csp ]
Original file line number Diff line number Diff line change @@ -10,9 +10,9 @@ if [[ -z "$CI" ]]; then
1010 asdf plugin-add elixir || true
1111 asdf install
1212 fi
13-
14- mix local.hex --force --if-missing
15- mix local.rebar --force
1613fi
1714
15+ mix local.hex --force --if-missing
16+ mix local.rebar --force
17+
1818mix deps.get
You can’t perform that action at this time.
0 commit comments