Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
carlogilmar committed Apr 19, 2024
1 parent a1a1b82 commit 6cba9d0
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,35 @@ concurrency:
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}

jobs:
setup:
name: Setup
runs-on: ubuntu-latest
outputs:
SHORT_SHA: ${{ steps.short-sha.outputs.short_sha }}
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Setup BEAM
uses: erlef/setup-beam@v1
with:
elixir-version: 1.16.0-otp-26
otp-version: 26.2.1

- name: Cache
uses: actions/cache@v4
with:
path: |
_build
deps
key: |
explain-versions-${{ hashFiles('.tool-versions') }}-${{ hashFiles('mix.lock') }}-${{ hashFiles('yarn.lock') }}-2023-03-09
restore-keys: |
explain-versions-${{ hashFiles('.tool-versions') }}-${{ hashFiles('mix.lock') }}-${{ hashFiles('yarn.lock') }}-2023-03-09
- name: Install Elixir dependencies
run: mix do deps.get, compile --warnings-as-errors

test:
name: Test
needs: setup
Expand Down

0 comments on commit 6cba9d0

Please sign in to comment.