add limit to test #1469
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: CI | |
env: | |
ELIXIR_VERSION: "1.17" | |
OTP_VERSION: "27" | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test-coverage: | |
runs-on: ubuntu-22.04 | |
name: Test Coverage | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
services: | |
postgres: | |
image: postgres:12-alpine | |
env: | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: postgres | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
ports: | |
- 5432:5432 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: erlef/setup-beam@v1 | |
id: beam | |
with: | |
otp-version: ${{ env.OTP_VERSION }} | |
elixir-version: ${{ env.ELIXIR_VERSION }} | |
- name: Restore dependencies and build cache | |
uses: actions/cache@v4 | |
with: | |
path: | | |
_build | |
deps | |
key: ${{ runner.os }}-otp-${{ steps.beam.outputs.otp-version }}-elixir-${{ steps.beam.outputs.elixir-version }}-mix-${{ hashFiles('mix.lock') }} | |
restore-keys: ${{ runner.os }}-otp-${{ steps.beam.outputs.otp-version }}-elixir-${{ steps.beam.outputs.elixir-version }}- | |
- name: Install Dependencies | |
run: | | |
mix local.rebar --force | |
mix local.hex --force | |
mix deps.get | |
- name: Compile | |
run: mix compile --warnings-as-errors | |
- name: Run Tests | |
run: mix coveralls.json.all --warnings-as-errors | |
- uses: codecov/codecov-action@v4 | |
with: | |
files: ./cover/excoveralls.json | |
tests: | |
runs-on: ubuntu-22.04 | |
name: OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}} | |
strategy: | |
matrix: | |
include: | |
- { elixir: 1.13, otp: 24 } | |
- { elixir: 1.14, otp: 24 } | |
- { elixir: 1.14, otp: 25 } | |
- { elixir: 1.15, otp: 24 } | |
- { elixir: 1.15, otp: 25 } | |
- { elixir: 1.15, otp: 26 } | |
- { elixir: 1.16, otp: 24 } | |
- { elixir: 1.16, otp: 25 } | |
- { elixir: 1.16, otp: 26 } | |
- { elixir: 1.17, otp: 25 } | |
- { elixir: 1.17, otp: 26 } | |
- { elixir: 1.17, otp: 27 } | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
services: | |
postgres: | |
image: postgres:12-alpine | |
env: | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: postgres | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
ports: | |
- 5432:5432 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: erlef/setup-beam@v1 | |
id: beam | |
with: | |
otp-version: ${{ matrix.otp }} | |
elixir-version: ${{ matrix.elixir }} | |
- name: Restore dependencies and build cache | |
uses: actions/cache@v4 | |
with: | |
path: | | |
_build | |
deps | |
key: ${{ runner.os }}-otp-${{ steps.beam.outputs.otp-version }}-elixir-${{ steps.beam.outputs.elixir-version }}-mix-${{ hashFiles('mix.lock') }} | |
restore-keys: ${{ runner.os }}-otp-${{ steps.beam.outputs.otp-version }}-elixir-${{ steps.beam.outputs.elixir-version }}- | |
- name: Install Dependencies | |
run: | | |
mix local.rebar --force | |
mix local.hex --force | |
mix deps.get | |
- name: Run Base Tests | |
run: mix test | |
- name: Run Postgres Tests | |
run: mix test.postgres | |
matrix-results: | |
if: ${{ always() }} | |
runs-on: ubuntu-latest | |
name: Tests | |
needs: | |
- tests | |
steps: | |
- run: | | |
result="${{ needs.tests.result }}" | |
if [[ $result == "success" ]]; then | |
exit 0 | |
else | |
exit 1 | |
fi | |
code-quality: | |
runs-on: ubuntu-latest | |
name: Code Quality | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
services: | |
postgres: | |
image: postgres:12-alpine | |
env: | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: postgres | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
ports: | |
- 5432:5432 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: erlef/setup-beam@v1 | |
id: beam | |
with: | |
otp-version: ${{ env.OTP_VERSION }} | |
elixir-version: ${{ env.ELIXIR_VERSION }} | |
- name: Restore dependencies and build cache | |
uses: actions/cache@v4 | |
with: | |
path: | | |
_build | |
deps | |
key: ${{ runner.os }}-otp-${{ steps.beam.outputs.otp-version }}-elixir-${{ steps.beam.outputs.elixir-version }}-mix-${{ hashFiles('mix.lock') }} | |
restore-keys: ${{ runner.os }}-otp-${{ steps.beam.outputs.otp-version }}-elixir-${{ steps.beam.outputs.elixir-version }}- | |
- name: Restore PLT cache | |
uses: actions/cache@v4 | |
id: plt_cache | |
with: | |
key: | | |
${{ runner.os }}-${{ steps.beam.outputs.otp-version }}-${{ steps.beam.outputs.elixir-version }}-plt-${{ hashFiles('mix.lock') }} | |
restore-keys: | | |
${{ runner.os }}-${{ steps.beam.outputs.otp-version }}-${{ steps.beam.outputs.elixir-version }}-plt- | |
path: | | |
.plts | |
- name: Install Dependencies | |
run: | | |
mix local.rebar --force | |
mix local.hex --force | |
mix deps.get | |
- name: Compile | |
run: mix compile --warnings-as-errors | |
- name: Run Formatter | |
run: mix format --check-formatted | |
- name: Run Linter | |
run: mix credo | |
- name: Run Hex Audit | |
run: mix hex.audit | |
- name: Generate docs | |
run: mix docs | |
- name: Run Dialyzer | |
run: mix dialyzer |