Merge branch 'main' into 0.11.x #579
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Elixir CI | |
on: push | |
jobs: | |
ubuntu: | |
runs-on: ubuntu-20.04 | |
name: Linux OTP ${{matrix.pair.otp-version}} / Elixir ${{matrix.pair.elixir-version}} | |
strategy: | |
matrix: | |
pair: | |
- otp-version: '25.0' | |
elixir-version: '1.13.4' | |
- otp-version: '26.0' | |
elixir-version: '1.14.5' | |
- otp-version: '26.0' | |
elixir-version: '1.15.2' | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: erlef/setup-beam@v1 | |
with: | |
otp-version: ${{matrix.pair.otp-version}} | |
elixir-version: ${{matrix.pair.elixir-version}} | |
- uses: actions/cache@v1 | |
id: deps-cache | |
with: | |
path: deps | |
key: ${{ runner.os }}-mix-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }} | |
- name: Install dependencies | |
run: mix deps.get | |
- uses: actions/cache@v1 | |
id: build-cache | |
with: | |
path: _build | |
key: ${{ runner.os }}-build-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }} | |
- name: Compile base | |
run: mix compile | |
- name: Get Zig version | |
id: get-zig-version | |
run: echo "version=$(mix zig.version)" >> $GITHUB_OUTPUT | |
- uses: actions/cache@v1 | |
id: zig-cache | |
with: | |
path: zig | |
key: ${{ runner.os }}-zig-${{ steps.get-zig-version.outputs.version }} | |
- name: Get Zig | |
run: mix zig.get | |
- name: Run Tests | |
env: | |
RUNNING_CI: "true" | |
run: mix test --exclude no_ci |