Skip to content

Commit

Permalink
Removing setup step
Browse files Browse the repository at this point in the history
  • Loading branch information
carlogilmar committed Apr 19, 2024
1 parent 0e5e537 commit a1a1b82
Showing 1 changed file with 6 additions and 29 deletions.
35 changes: 6 additions & 29 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,35 +15,6 @@ 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 All @@ -69,6 +40,9 @@ jobs:
restore-keys: |
explain-versions-${{ hashFiles('.tool-versions') }}-${{ hashFiles('mix.lock') }}-2024-19-04
- name: Install Elixir dependencies
run: mix do deps.get, compile --warnings-as-errors

- name: Run tests
run: mix test --warnings-as-errors

Expand Down Expand Up @@ -98,6 +72,9 @@ jobs:
restore-keys: |
explain-versions-${{ hashFiles('.tool-versions') }}-${{ hashFiles('mix.lock') }}-2024-19-04
- name: Install Elixir dependencies
run: mix do deps.get, compile --warnings-as-errors

- name: Credo
run: mix credo

Expand Down

0 comments on commit a1a1b82

Please sign in to comment.