Skip to content

Commit

Permalink
feat: add active Indexers query
Browse files Browse the repository at this point in the history
  • Loading branch information
pete-eiger committed Feb 15, 2024
1 parent ef23065 commit 369a023
Show file tree
Hide file tree
Showing 8 changed files with 557 additions and 229 deletions.
36 changes: 27 additions & 9 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
# copy of https://github.com/actions-rs/meta/blob/master/recipes/quickstart.md
name: CI

on:
push:
branches: [main]
pull_request_review:
types: [submitted]

name: CI

jobs:
fmt:
name: cargo fmt
runs-on: ubuntu-latest
container:
container:
image: rust:latest
steps:
- uses: actions/checkout@v3
Expand All @@ -36,7 +35,7 @@ jobs:
submodules: true
- name: Checkout submodules
run: git submodule update --init --recursive
- uses: actions/setup-go@v4 # we need go to build go-waku
- uses: actions/setup-go@v4
with:
go-version: '1.19'
- uses: actions-rs/toolchain@v1
Expand All @@ -46,7 +45,6 @@ jobs:
default: true
override: true
- uses: actions-rs/cargo@v1
continue-on-error: false
with:
command: check
- name: Run Clippy
Expand All @@ -65,13 +63,29 @@ jobs:
- os: macos-latest
toolchain: stable-x86_64-apple-darwin
runs-on: ${{ matrix.os }}
services:
postgres:
image: postgres:12
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: test_db
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
env:
DATABASE_URL: postgres://postgres:postgres@localhost:5432/test_db
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Checkout submodules
run: git submodule update --init --recursive
- uses: actions/setup-go@v4 # we need go to build go-waku
- uses: actions/setup-go@v4
with:
go-version: '1.19'
- uses: actions-rs/toolchain@v1
Expand All @@ -80,11 +94,15 @@ jobs:
toolchain: ${{ matrix.toolchain }}
default: true
override: true
- name: Install sqlx-cli
run: cargo install sqlx-cli --version=0.6.0
- name: Run Database Migrations
run: cargo sqlx database create && cargo sqlx migrate run
env:
DATABASE_URL: postgres://postgres:postgres@localhost:5432/test_db
- uses: actions-rs/cargo@v1
continue-on-error: false
with:
command: build
- uses: actions-rs/cargo@v1
continue-on-error: false
with:
command: test

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 369a023

Please sign in to comment.