Skip to content

0.3.x

0.3.x #45

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- master
env:
MIX_ENV: test
jobs:
ci-macos:
runs-on: macos-latest
strategy:
fail-fast: false
matrix:
include:
- pair:
elixir: "1.14"
otp: "25.3"
zig: "0.13.0"
- pair:
elixir: "1.17"
otp: "27.0"
zig: "0.13.0"
steps:
- uses: actions/checkout@v4
- name: Generate .tool-versions file
run: |
echo "zig ${{ matrix.pair.zig }}" >> .tool-versions
echo "elixir ${{ matrix.pair.elixir }}" >> .tool-versions
echo "erlang ${{ matrix.pair.otp }}" >> .tool-versions
cp .tool-versions ~/.
cat .tool-versions
- uses: asdf-vm/actions/install@v3
- name: Install Hex package manager
run: mix local.hex --force && mix local.rebar --force
- run: mix deps.get
- uses: actions/cache@v4
with:
path: |
~/.asdf
deps
key: mix-deps-${{ hashFiles('**/mix.lock') }}-${{ matrix.pair.elixir }}-${{ matrix.pair.otp }}
- run: mix test
ci-ubuntu:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- pair:
elixir: "1.14"
otp: "25.3"
- pair:
elixir: "1.15"
otp: "26.2"
- pair:
elixir: "1.16"
otp: "26.2"
- pair:
elixir: "1.17"
otp: "27.0"
lint: lint
steps:
- uses: actions/checkout@v4
- name: Install test dependencies
run: sudo apt-get update && sudo apt-get install -y libcurl4-openssl-dev krb5-{user,kdc,admin-server}
- name: Setup Kerberos environment and initialize configuration
run: sudo ./test/support/files/setup_kerberos.sh
- uses: goto-bus-stop/setup-zig@v2
with:
version: 0.13.0
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.pair.otp}}
elixir-version: ${{matrix.pair.elixir}}
version-type: strict
- uses: actions/cache@v4
with:
path: deps
key: mix-deps-${{ hashFiles('**/mix.lock') }}
- run: mix deps.get
- run: mix format --check-formatted
if: ${{ matrix.lint }}
- run: mix deps.unlock --check-unused
if: ${{ matrix.lint }}
- run: mix deps.compile
- run: mix compile --warnings-as-errors
if: ${{ matrix.lint }}
- run: mix test --include kerberos:true
if: ${{ ! matrix.lint }}
- run: mix test --warnings-as-errors --include kerberos:true
if: ${{ matrix.lint }}