remove vedist #98
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: Unit tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: { } | |
workflow_dispatch: { } | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v2 | |
- | |
name: Install dependencies | |
uses: borales/[email protected] | |
with: | |
cmd: install | |
- | |
name: Generate subgraph types | |
uses: borales/[email protected] | |
with: | |
cmd: codegen | |
- | |
name: Build subgraph | |
uses: borales/[email protected] | |
with: | |
cmd: build | |
- | |
name: Run docker | |
uses: addnab/docker-run-action@v3 | |
with: | |
registry: gcr.io | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
image: belbix/subgraph:matchstick | |
options: -t --rm --mount type=bind,source=${{ github.workspace }},target=/matchstick | |
run: ../binary-linux-20 |