Skip to content

Merge pull request #46 from ortfo/simplified-data-flow #39

Merge pull request #46 from ortfo/simplified-data-flow

Merge pull request #46 from ortfo/simplified-data-flow #39

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:

Check failure on line 5 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build.yml

Invalid workflow file

You have an error in your yaml syntax on line 5
runs-on: ${{matrix.build_with}}
strategy:
matrix:
go: [1.18.x]
build_for:
- darwin
- windows
- linux
build_with:
- ubuntu-latest
- macos-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{matrix.go}}
- name: Install pnpm
uses: pnpm/[email protected]
- name: Checkout code
uses: actions/checkout@v2
- name: Install backend dependencies
run: go mod tidy
- name: Install frontend dependencies
run: pnpm i
- name: Build project
run: make build