Skip to content

Bump the actions group across 1 directory with 14 updates #321

Bump the actions group across 1 directory with 14 updates

Bump the actions group across 1 directory with 14 updates #321

Workflow file for this run

name: Elixir
on:
push:
branches:
- main
pull_request:
branches:
- main
defaults:
run:
shell: bash
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
variation:
- otp: "27.x"
elixir: "1.18"
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
submodules: recursive
- name: Set up Elixir
uses: erlef/setup-beam@fc68ffb90438ef2936bbb3251622353b3dcb2f93 # v1.24.0
with:
otp-version: ${{matrix.variation.otp}}
elixir-version: ${{matrix.variation.elixir}}
- name: Restore dependencies cache
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
with:
path: deps
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-mix-
- name: Build BLST
run: |
cd src
make blst
- name: Build CKZG
run: |
cd src
make
- name: Install dependencies
run: mix deps.get
- name: Credo
run: mix credo --strict
- name: Dialyzer
run: mix dialyzer
- name: Test
run: mix test