-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (34 loc) · 977 Bytes
/
elixir.yml
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
32
33
34
35
36
37
38
39
40
name: Elixir CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
name: Build and test
runs-on: ubuntu-latest
env:
ImageOS: ubuntu20
steps:
- uses: actions/checkout@v2
- name: Set up Elixir
uses: erlef/setup-beam@v1.18.2
with:
elixir-version: '1.17.3' # Define the elixir version [required]
otp-version: '27.1.2' # 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: Update Readme
run: mix update_readme
- uses: stefanzweifel/git-auto-commit-action@v4
with:
file_pattern: README.md
commit_message: ":octocat: updated README.md automagically"
commit_user_name: "EEXoBot"