-
Notifications
You must be signed in to change notification settings - Fork 1
31 lines (28 loc) · 833 Bytes
/
Copy pathtest.yml
File metadata and controls
31 lines (28 loc) · 833 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: Elixir CI Tests
on: workflow_dispatch
# pull_request:
# branches: [ master ]
jobs:
build:
name: Build and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Elixir
uses: actions/setup-elixir@v1
with:
elixir-version: '1.11' # Define the elixir version [required]
otp-version: '23' # Define the OTP version [required]
- name: Restore dependencies cache
uses: actions/cache@v2
with:
path: deps
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-mix-
- name: Install dependencies
run: mix deps.get
- name: Run tests
env:
BOT_TOKEN: ${{ secrets.TEST_BOT_TOKEN }}
KUMMER_CHANNEL: ${{ secrets.TEST_KUMMER_CHANNEL }}
run: mix test