fix(deps): update rust crate ckb-hash to 0.119.0 #2377
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: run test coverage | |
on: ["push", "pull_request"] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
env: | |
MIX_ENV: test | |
GODWOKEN_CHAIN: "testnet_v1_1" | |
GODWOKEN_JSON_RPC_URL: "http://localhost:8024" | |
GODWOKEN_MEMPOOL_RPC_URL: "http://localhost:8024" | |
CKB_INDEXER_URL: "http://localhost:8116" | |
CKB_RPC_URL: "http://localhost:8114" | |
DATABASE_URL: "ecto://postgres:postgres@localhost:5432/godwoken_explorer_test" | |
DISABLE_INDEXER: "true" | |
DISABLE_OBAN_CRONTAB: "true" | |
strategy: | |
matrix: | |
elixir: ['1.14'] | |
otp: ['25'] | |
services: | |
# Label used to access the service container | |
postgres: | |
# Docker Hub image | |
image: postgres | |
# Provide the password for postgres | |
env: | |
# Match apps/explorer/config/test.exs config :explorer, Explorer.Repo, database | |
POSTGRES_DB: godwoken_explorer_test | |
# match PGPASSWORD for elixir image above | |
POSTGRES_PASSWORD: postgres | |
# match PGUSER for elixir image above | |
POSTGRES_USER: postgres | |
# Set health checks to wait until postgres has started | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
ports: | |
# Maps tcp port 5432 on service container to the host | |
- 5432:5432 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup elixir | |
uses: erlef/setup-beam@v1 | |
with: | |
elixir-version: ${{ matrix.elixir }} | |
otp-version: ${{ matrix.otp }} | |
- name: Setup | Rust | |
uses: ATiltedTree/setup-rust@v1 | |
with: | |
rust-version: 1.64.0 | |
- name: Get deps cache | |
uses: actions/cache@v3 | |
with: | |
path: deps/ | |
key: deps-${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles('**/mix.lock') }} | |
- name: Get build cache | |
uses: actions/cache@v3 | |
with: | |
path: _build/test/ | |
key: build-${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles('**/mix.lock') }} | |
- name: Install Dependencies | |
run: | | |
mix local.rebar --force | |
mix local.hex --force | |
mix deps.get | |
mix compile | |
- name: Run Tests | |
run: mix coveralls.github | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |