Skip to content

Commit

Permalink
Fixing CI
Browse files Browse the repository at this point in the history
  • Loading branch information
akoutmos committed Sep 27, 2024
1 parent 0f43145 commit 9b94ae5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 12 deletions.
15 changes: 6 additions & 9 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ env:

on:
push:
branches: [ master ]
branches: [master]
pull_request:
branches: [ master ]
branches: [master]

jobs:
static_analysis:
Expand All @@ -21,8 +21,8 @@ jobs:
- name: Set up Elixir
uses: erlef/setup-elixir@v1
with:
elixir-version: '1.13.3'
otp-version: '24.2'
elixir-version: "1.13.3"
otp-version: "24.2"
- name: Restore dependencies cache
uses: actions/cache@v2
with:
Expand Down Expand Up @@ -53,9 +53,9 @@ jobs:
strategy:
matrix:
elixir:
- '1.13.3'
- "1.13.3"
otp:
- '24.2'
- "24.2"

steps:
- name: Checkout code
Expand All @@ -74,7 +74,4 @@ jobs:
- name: Install dependencies
run: mix deps.get
- name: ExUnit tests
env:
MIX_ENV: test
SHELL: /bin/bash
run: mix coveralls.github
3 changes: 0 additions & 3 deletions config/config.exs

This file was deleted.

1 change: 1 addition & 0 deletions test/test_helper.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ Logger.configure(level: :info)

Application.put_env(:ecto, :primary_key_type, :id)
Application.put_env(:ecto, :async_integration_tests, false)
Application.put_env(:logger, :default_formatter, truncate: :infinity)

ecto = Mix.Project.deps_paths()[:ecto]
Code.require_file("#{ecto}/integration_test/support/schemas.exs", __DIR__)
Expand Down

0 comments on commit 9b94ae5

Please sign in to comment.