chore(deps): bump floki from 0.36.2 to 0.36.3 in the dev group #51
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
# This file is synced with beam-community/common-config. Any changes will be overwritten. | |
name: CI | |
on: | |
merge_group: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
push: | |
branches: | |
- main | |
workflow_call: | |
secrets: | |
GH_PERSONAL_ACCESS_TOKEN: | |
required: true | |
workflow_dispatch: | |
concurrency: | |
group: CI ${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
Credo: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Elixir | |
uses: stordco/actions-elixir/setup@v1 | |
with: | |
github-token: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }} | |
- name: Credo | |
run: mix credo --strict | |
Dependencies: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Elixir | |
uses: stordco/actions-elixir/setup@v1 | |
with: | |
github-token: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }} | |
- name: Unused | |
run: mix deps.unlock --check-unused | |
Dialyzer: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Elixir | |
uses: stordco/actions-elixir/setup@v1 | |
with: | |
github-token: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }} | |
- name: Dialyzer | |
run: mix dialyzer --format github | |
Format: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Elixir | |
uses: stordco/actions-elixir/setup@v1 | |
with: | |
github-token: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }} | |
- name: Format | |
run: mix format --check-formatted | |
Test: | |
name: Test (Elixir ${{ matrix.versions.elixir }} OTP ${{ matrix.versions.otp }}) | |
runs-on: ubuntu-latest | |
env: | |
MIX_ENV: test | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Elixir | |
uses: stordco/actions-elixir/setup@v1 | |
with: | |
elixir-version: ${{ matrix.versions.elixir }} | |
github-token: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }} | |
otp-version: ${{ matrix.versions.otp }} | |
- name: Compile | |
run: mix compile --warnings-as-errors | |
- name: Test | |
run: mix test | |
strategy: | |
fail-fast: false | |
matrix: | |
versions: | |
- elixir: 1.15 | |
otp: 26 | |
- elixir: 1.16 | |
otp: 26 | |
- elixir: 1.17 | |
otp: 27 | |