Skip to content

Removing setup step

Removing setup step #2

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
push:
branches:
- main
env:
MIX_ENV: test
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
test:

Check failure on line 18 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 18, Col: 3): The workflow must contain at least one job with no dependencies.
name: Test
needs: setup
runs-on: ubuntu-latest
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') }}-2024-19-04
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
analysis:
name: Static Analysis
needs: setup
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup BEAM
id: 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') }}-2024-19-04
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
- name: Formatted
run: mix format --check-formatted
- name: Restore PLT cache
uses: actions/cache@v4
id: plt_cache
with:
key: plt-${{ runner.os }}-${{ steps.beam.outputs.otp-version }}-${{ steps.beam.outputs.elixir-version }}-${{ hashFiles('**/mix.lock') }}-${{ hashFiles('**/*.ex') }}
restore-keys: |
plt-${{ runner.os }}-${{ steps.beam.outputs.otp-version }}-${{ steps.beam.outputs.elixir-version }}-${{ hashFiles('**/mix.lock') }}-${{ hashFiles('**/*.ex') }}
plt-${{ runner.os }}-${{ steps.beam.outputs.otp-version }}-${{ steps.beam.outputs.elixir-version }}-${{ hashFiles('**/mix.lock') }}-
plt-${{ runner.os }}-${{ steps.beam.outputs.otp-version }}-${{ steps.beam.outputs.elixir-version }}-
plt-${{ runner.os }}-${{ steps.beam.outputs.otp-version }}-
path: priv/plts
- name: Create PLTs
if: steps.plt_cache.outputs.cache-hit != 'true' || github.run_attempt != '1'
run: mix dialyzer --plt
- name: Run Dialyzer
run: mix dialyzer --format github