Skip to content

Merge pull request #6 from streamingfast/feature/table-row-support-co… #42

Merge pull request #6 from streamingfast/feature/table-row-support-co…

Merge pull request #6 from streamingfast/feature/table-row-support-co… #42

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
name: Check & Test
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Check
run: cargo check
- name: Test
run: cargo check