Skip to content

Commit affd586

Browse files
nshkrdotcomclaude
andcommitted
chore: Simplify logo and add GitHub Actions CI workflow
- Remove all text and decorative elements from eval_ex.svg, keeping only the core hexagonal logo with gradient fills - Add GitHub Actions CI workflow for automated testing on push/PR to master branch - CI runs on Elixir 1.18 and OTP 27 with dependency caching - Enforces compilation with --warnings-as-errors to maintain code quality Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <[email protected]>
1 parent 4337689 commit affd586

File tree

2 files changed

+42
-94
lines changed

2 files changed

+42
-94
lines changed

.github/workflows/ci.yml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
branches:
9+
- master
10+
11+
jobs:
12+
test:
13+
runs-on: ubuntu-latest
14+
name: Test on Elixir 1.18 and OTP 27
15+
16+
steps:
17+
- name: Checkout code
18+
uses: actions/checkout@v4
19+
20+
- name: Set up Elixir
21+
uses: erlef/setup-beam@v1
22+
with:
23+
elixir-version: '1.18'
24+
otp-version: '27'
25+
26+
- name: Restore dependencies cache
27+
uses: actions/cache@v4
28+
with:
29+
path: |
30+
deps
31+
_build
32+
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
33+
restore-keys: ${{ runner.os }}-mix-
34+
35+
- name: Install dependencies
36+
run: mix deps.get
37+
38+
- name: Compile with warnings as errors
39+
run: mix compile --warnings-as-errors
40+
41+
- name: Run tests
42+
run: mix test

assets/eval_ex.svg

Lines changed: 0 additions & 94 deletions
Loading

0 commit comments

Comments
 (0)