Skip to content

attempt fix

attempt fix #1

Workflow file for this run

name: Compile and check
on:
workflow_call:
inputs:
cache_paths:
type: string
required: false
default: ""
elixir-version:
type: string
required: false
default: "1.14.3" # Define the elixir version
otp-version:
type: string
required: false
default: "25.1" # Define the OTP version
mix-env:
type: string
required: false
default: test
secrets:
HEX_ORGANIZATION_COINGAMING_KEY:
required: true
defaults:
run:
shell: bash
env:
MIX_ENV: ${{ inputs.mix-env }}
jobs:
build:
name: Build
uses: build.yml

Check failure on line 35 in .github/workflows/dialyzer.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/dialyzer.yml

Invalid workflow file

invalid value workflow reference: no version specified
secrets: inherit
with:
mix-env: ${{ inputs.mix-env }}
cache_paths: ${{ inputs.cache_paths }}
elixir-version: ${{ inputs.elixir-version }}
otp-version: ${{ inputs.otp-version }}
dialyzer:
name: Run dialyzer
needs: build
runs-on: ubuntu-20.04
steps:
- name: Prepare repo and env
uses: coingaming/.github/actions/[email protected]
with:
mix-env: ${{ inputs.mix-env }}
cache_paths: ${{ inputs.cache_paths }}
elixir-version: ${{ inputs.elixir-version }}
otp-version: ${{ inputs.otp-version }}
token: ${{ secrets.GH_TOKEN }}
- name: Run dialyzer
run: mix dialyzer --format github