Skip to content

Commit

Permalink
Clean up Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
danschultzer committed Nov 18, 2023
1 parent 78262f0 commit 5c2e859
Show file tree
Hide file tree
Showing 3 changed files with 60 additions and 50 deletions.
50 changes: 0 additions & 50 deletions .github/workflows/build.yml

This file was deleted.

35 changes: 35 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: CI

on:
push:
branches: [ main ]
pull_request:
workflow_call:

jobs:
test:
strategy:
matrix:
version:
- otp: 26.0
elixir: 1.15
os: ubuntu-latest
- otp: 22.0
elixir: 1.12
# It's necessary to run on ubuntu 20.04 for OTP 20 - 23
# See https://github.com/erlef/setup-beam
os: ubuntu-20.04
runs-on: ${{ matrix.version.os }}
name: OTP ${{matrix.version.otp}} / Elixir ${{matrix.version.elixir}}
env:
MIX_ENV: test
steps:
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.version.otp}}
elixir-version: ${{matrix.version.elixir}}
- run: mix deps.get
- run: mix compile --warnings-as-errors
- run: mix test
- run: mix credo
25 changes: 25 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Publish

on:
release:
types:
- published

jobs:
test:
uses: ./.github/workflows/ci.yml

publish:
needs: test
runs-on: ubuntu-latest
name: Publish release
env:
HEX_API_KEY: ${{secrets.HEX_API_KEY}}
steps:
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
with:
otp-version: 26.0
elixir-version: 1.15
- run: mix deps.get
- run: mix hex.publish --yes

0 comments on commit 5c2e859

Please sign in to comment.