File tree Expand file tree Collapse file tree 2 files changed +33
-1
lines changed
Expand file tree Collapse file tree 2 files changed +33
-1
lines changed Original file line number Diff line number Diff line change 1+
2+ name : Elixir CI
3+
4+ on :
5+ push :
6+ branches : [ master ]
7+ pull_request :
8+ branches : [ master ]
9+
10+ jobs :
11+ build :
12+
13+ name : Build and test
14+ runs-on : ubuntu-latest
15+
16+ steps :
17+ - uses : actions/checkout@v4
18+ - name : Set up Elixir
19+ uses : erlef/setup-beam@v1
20+ with :
21+ elixir-version : ' 1.18.3' # [Required] Define the Elixir version
22+ otp-version : ' 27.3' # [Required] Define the Erlang/OTP version
23+ - name : Restore dependencies cache
24+ uses : actions/cache@v4
25+ with :
26+ path : deps
27+ key : ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
28+ restore-keys : ${{ runner.os }}-mix-
29+ - name : Install dependencies
30+ run : mix deps.get
31+ - name : Run tests
32+ run : mix test
Original file line number Diff line number Diff line change 11MIT License
22
3- Copyright (c) 2019 Lukas Niederberger
3+ Copyright (c) 2025 Marcin Ruszkiewicz
44
55Permission is hereby granted, free of charge, to any person obtaining a copy
66of this software and associated documentation files (the "Software"), to deal
You can’t perform that action at this time.
0 commit comments