Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .formatter.exs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# Used by "mix format"
[
inputs: ["mix.exs", "{config,lib,test}/**/*.{ex,exs}"]
inputs: ["{mix,.formatter}.exs", "{config,lib,test}/**/*.{ex,exs}"]
]
20 changes: 10 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ env:
jobs:
static_code_analysis:
name: Static Code Analysis
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
strategy:
matrix:
elixir: [1.11]
otp: [23.2]
otp: ["26.2.1"]
elixir: ["1.16.1", "1.17.3"]
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.6.0
Expand All @@ -29,10 +29,10 @@ jobs:
fetch-depth: 0

- name: Setup
uses: erlef/setup-beam@v1
uses: erlef/setup-beam@v1.18.2
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{ matrix.elixir }}
otp-version: ${{ matrix.otp }}

- name: Install Dependencies
if: steps.mix-cache.outputs.cache-hit != 'true'
Expand All @@ -51,12 +51,12 @@ jobs:

unit_tests:
name: Unit Tests
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
elixir: [1.11]
otp: [23.2]
otp: ["26.2.1"]
elixir: ["1.16.1", "1.17.3"]
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.6.0
Expand All @@ -69,10 +69,10 @@ jobs:
fetch-depth: 0

- name: Setup
uses: erlef/setup-beam@v1
uses: erlef/setup-beam@v1.18.2
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{ matrix.elixir }}
otp-version: ${{ matrix.otp }}

- name: Install Dependencies
if: steps.mix-cache.outputs.cache-hit != 'true'
Expand Down
16 changes: 11 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# The directory Mix will write compiled artifacts to.
/_build
/_build/

# If you run "mix test --cover", coverage assets end up here.
/cover
/cover/

# The directory Mix downloads your dependencies sources to.
/deps
/deps/

# Where 3rd-party dependencies like ExDoc output generated docs.
/doc
# Where third-party dependencies like ExDoc output generated docs.
/doc/

# Ignore .fetch files in case you like to edit your project deps locally.
/.fetch
Expand All @@ -19,5 +19,11 @@ erl_crash.dump
# Also ignore archive artifacts (built via "mix archive.build").
*.ez

# Ignore package tarball (built via "mix hex.build").
oembed-*.tar

# Temporary files, for example, from tests.
/tmp/

# Ignore Mix lock file
mix.lock
30 changes: 0 additions & 30 deletions config/config.exs

This file was deleted.

Loading