Skip to content

Commit f7e0497

Browse files
fix name in license, add github CI
1 parent 496bede commit f7e0497

File tree

2 files changed

+33
-1
lines changed

2 files changed

+33
-1
lines changed

.github/workflows/ci.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
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

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2019 Lukas Niederberger
3+
Copyright (c) 2025 Marcin Ruszkiewicz
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)