use default json serializer #59
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
on: | |
- push | |
- pull_request | |
jobs: | |
test: | |
runs-on: ubuntu-20.04 | |
name: OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- elixir: 1.8.2 | |
otp: 21.3 | |
- elixir: 1.9.4 | |
otp: 22.2 | |
- elixir: 1.10.4 | |
otp: 23.0 | |
- elixir: 1.12.2 | |
otp: 24.0.3 | |
steps: | |
- uses: actions/checkout@v2 | |
- run: docker-compose up -d | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 2.6 | |
bundler-cache: true | |
- uses: erlef/setup-beam@v1 | |
with: | |
otp-version: ${{matrix.otp}} | |
elixir-version: ${{matrix.elixir}} | |
- run: cd sidekiq && bundle install | |
- run: mix deps.get | |
- run: mix format --check-formatted | |
if: matrix.elixir == '1.12.2' | |
- run: mix compile --force --warnings-as-errors | |
- run: mix test --include integration --trace |