Skip to content

check data

check data #16

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
env:
FOUNDRY_PROFILE: ci
jobs:
run-ci:
runs-on: ubuntu-latest
steps:

Check failure on line 14 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 14
- uses: actions/checkout@v2
- name: Auth deps
run: echo ${{ secrets.GH_TOKEN }} | gh auth login --with-token
-name: Check users
run: git config user.name && git config user.email
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: Install deps
run: forge install
- name: Check gas snapshots
run: forge snapshot --check
- name: Run tests
run: forge test