Skip to content

Merge pull request #269 from coryodaniel/stop-genserver-without-raising #656

Merge pull request #269 from coryodaniel/stop-genserver-without-raising

Merge pull request #269 from coryodaniel/stop-genserver-without-raising #656

Workflow file for this run

name: Kubernetes Compatibility Matrix
on:
push:
branches: [develop]
pull_request:
branches: [develop]
env:
KUBECONFIG: /home/runner/.kube/config
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
k8s_version: [v1.24.12, v1.25.8, v1.26.3, v1.27.1]
steps:
- uses: engineerd/[email protected]
id: kind
with:
version: v0.18.0
image: kindest/node:${{ matrix.k8s_version }}
- uses: actions/[email protected]
- uses: erlef/setup-beam@v1
with:
version-file: .tool-versions
version-type: strict
install-rebar: true
install-hex: true
- name: Retrieve Build Cache
uses: actions/cache@v3
id: build-folder-cache
with:
path: _build
key: ${{ runner.os }}-${{ steps.beam.outputs.elixir-version }}-${{ steps.beam.outputs.otp-version }}-build-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }}
- name: Retrieve Mix Dependencies Cache
uses: actions/cache@v3
id: mix-cache
with:
path: deps
key: ${{ runner.os }}-${{ steps.beam.outputs.elixir-version }}-${{ steps.beam.outputs.otp-version }}-mix-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }}
- run: mix local.rebar --force
- run: mix local.hex --force
- run: mix deps.get
- run: mix compile --warnings-as-errors
- run: TEST_WAIT_TIMEOUT=110 mix test --timeout 120000 --only integration --max-failures 1