Add stack.yaml workflow
This commit is contained in:
parent
6801bf9d88
commit
65bf155326
35
.github/workflows/stack.yaml
vendored
Normal file
35
.github/workflows/stack.yaml
vendored
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
name: Test stack.yaml
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
tags:
|
||||||
|
- 'v*'
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
schedule:
|
||||||
|
- cron: '0 2 * * *'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
name: Build binary
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
os: [macOS-latest, macOS-11, windows-latest, ubuntu-latest]
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
submodules: 'true'
|
||||||
|
|
||||||
|
- name: Run build
|
||||||
|
run: |
|
||||||
|
env
|
||||||
|
ghcup --version
|
||||||
|
ghcup run -i --stack latest -- stack build
|
||||||
|
shell: bash
|
||||||
|
|
Loading…
Reference in New Issue
Block a user