Skip to content

CI: push artifacts ? #7

CI: push artifacts ?

CI: push artifacts ? #7

Workflow file for this run

name: CI
on:
push:
branches: [ "mistress" ]
jobs:
stack:
name: "${{ matrix.os }} / stack + ghc-${{ matrix.ghc }}"
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
- macOS-latest
- windows-latest
ghc:
- "9.4.7"
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: |
stack build --system-ghc --test --bench --no-run-tests --no-run-benchmarks --only-dependencies
- uses: actions/cache@v2
name: Cache ~/.stack
with:
path: ~/.stack
key: ${{ matrix.os }}-${{ matrix.ghc }}-stack
- name: Test
run: |
stack test --system-ghc
- name: Build
run: |
stack build --system-ghc --test --bench --no-run-tests --no-run-benchmarks
- name: Upload executable
uses: actions/upload-artifact@v3
with:
name: prop-solveur-${{ matrix.os }}-${{ github.sha }}
path: $(stack path --dist-dir)/build/prop-solveur/prop-solveur