Skip to content

Added nix flake for building the mos cli tool #137

Added nix flake for building the mos cli tool

Added nix flake for building the mos cli tool #137

Workflow file for this run

name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
build:
name: Build
runs-on: macos-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.13
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Install dependencies
run: make deps-mac
- name: Build
run: make
- name: Test
run: make test