Skip to content

Adds eth_get_logs to client. #130

Adds eth_get_logs to client.

Adds eth_get_logs to client. #130

Workflow file for this run

name: CI
# Triggers the workflow on all pushes.
on: push
jobs:
test:
name: OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}}
strategy:
matrix:
otp: ['22.x', '24.x']
elixir: ['1.11.4', '1.13.4']
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: "Setup Elixir / Erlang"
uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- name: "Get the deps"
run: mix deps.get
- name: "Run the tests"
run: mix test