Skip to content

Add PRQL

Add PRQL #106

Workflow file for this run

name: Build CLI
on:
pull_request:
branches: [master]
workflow_dispatch:
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17
- name: Build Unix
if: matrix.os != 'windows-latest'
run: make build
- name: Build Windows
if: matrix.os == 'windows-latest'
run: go build -o bin/gcloc cmd/gcloc/main.go