mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-05-31 04:35:04 +00:00
26 lines
535 B
YAML
26 lines
535 B
YAML
# Base: https://github.com/haskell/actions/tree/main/setup#usage
|
|
|
|
name: build
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
|
|
jobs:
|
|
test:
|
|
|
|
name: Tests
|
|
runs-on: ubuntu-latest # TODO matrix testing
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: haskell/actions/setup@v1
|
|
with:
|
|
ghc-version: '8.8.3' # Exact version of ghc to use
|
|
# cabal-version: 'latest'. Omitted, but defaults to 'latest'
|
|
enable-stack: true
|
|
stack-version: 'latest'
|
|
- run: stack test
|