-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
👷 Switch over to GitHub actions (#90)
The `cimg/elixir` images available for CircleCI tend to lag those available for the `erlef/setup-beam` actions on GitHub Actions, so switch CI over to use GitHub actions.
- Loading branch information
1 parent
4272f69
commit 643730a
Showing
3 changed files
with
88 additions
and
41 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: ["main"] | ||
pull_request: | ||
branches: ["main"] | ||
|
||
env: | ||
MIX_ENV: test | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
test: | ||
name: Checks/Tests on OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}} | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
include: | ||
- elixir: '1.12' | ||
otp: '24' | ||
- elixir: '1.13' | ||
otp: '24' | ||
- elixir: '1.14' | ||
otp: '25' | ||
- elixir: '1.15' | ||
otp: '26' | ||
- elixir: '1.16' | ||
otp: '26' | ||
steps: | ||
- name: Set up Elixir | ||
id: setup | ||
uses: erlef/setup-beam@v1 | ||
with: | ||
otp-version: ${{matrix.otp}} | ||
elixir-version: ${{matrix.elixir}} | ||
version-type: strict | ||
|
||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Cache dependencies | ||
id: cache-deps | ||
env: | ||
cache-name: cache-elixir-deps | ||
uses: actions/cache@v4 | ||
with: | ||
key: ${{runner.os}}-mix-${{env.cache-name}}-${{steps.setup.outputs.otp-version}}-${{steps.setup.outputs.elixir-version}}-${{hashFiles('**/mix.lock')}} | ||
path: deps | ||
restore-keys: | | ||
${{runner.os}}-mix-${{env.cache-name}}-${{steps.setup.outputs.otp-version}}-${{steps.setup.outputs.elixir-version}}- | ||
${{runner.os}}-mix-${{env.cache-name}}-${{steps.setup.outputs.otp-version}}- | ||
${{runner.os}}-mix-${{env.cache-name}}- | ||
- name: Cache compiled build | ||
id: cache-build | ||
env: | ||
cache-name: cache-compiled-build | ||
uses: actions/cache@v4 | ||
with: | ||
key: ${{runner.os}}-mix-${{env.cache-name}}-${{steps.setup.outputs.otp-version}}-${{steps.setup.outputs.elixir-version}}-${{hashFiles('**/mix.lock')}} | ||
path: _build | ||
restore-keys: | | ||
${{runner.os}}-mix-${{env.cache-name}}-${{steps.setup.outputs.otp-version}}-${{steps.setup.outputs.elixir-version}}- | ||
${{runner.os}}-mix-${{env.cache-name}}-${{steps.setup.outputs.otp-version}}- | ||
${{runner.os}}-mix-${{env.cache-name}}- | ||
- name: Clean if incremental build fails | ||
if: github.run_attempt != '1' | ||
run: | | ||
mix deps.clean --all | ||
mix clean | ||
- name: Install dependencies | ||
run: mix deps.get | ||
|
||
- name: Compile | ||
run: mix compile --warnings-as-errors | ||
|
||
- name: Check formatting | ||
if: ${{matrix.elixir == '1.16'}} | ||
run: mix format --check-formatted | ||
|
||
- name: Run tests | ||
run: mix test |
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