Skip to content

Commit

Permalink
Bootstrap Github Action CI
Browse files Browse the repository at this point in the history
  • Loading branch information
papey authored Jul 28, 2024
1 parent 207d4c4 commit 79bbc02
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/elixir.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Build & Test

on:
push:
branches:
- master
tags:
- '*'
pull_request:
branches:
- "master"

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Elixir
uses: erlef/setup-beam@61e01a43a562a89bfc54c7f9a378ff67b03e4a21 # v1.16.0
with:
elixir-version: '1.17' # [Required] Define the Elixir version
- name: Install dependencies
run: mix deps.get

- name: Build
run: mix compile

0 comments on commit 79bbc02

Please sign in to comment.