Skip to content

Adding a cheatsheet #83

Adding a cheatsheet

Adding a cheatsheet #83

Workflow file for this run

# Copyright 2023-2024, Matthias Reik <fledex@reik.org>
#
# SPDX-License-Identifier: Apache-2.0
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Elixir CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
test:
name: Build and test
runs-on: ubuntu-latest
strategy:
matrix:
otp: [26.0]
elixir: [1.15.7]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Elixir
uses: erlef/setup-beam@v1 # 61e01a43a562a89bfc54c7f9a378ff67b03e4a21 # v1.16.0
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- name: Restore dependencies cache
uses: actions/cache@v4
with:
path: deps
key: deps-${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles('**/mix.lock') }}
- name: Get build cache
uses: actions/cache@v4
with:
path: _build/test
key: build-${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles('**/mix.lock') }}
- name: Install dependencies
run: |
mix deps.get
mix compile
- name: REUSE Compliance Check
uses: fsfe/reuse-action@v3
- name: Run tests
run: mix coveralls.github
env:
MIX_ENV: test
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}