8000 Bump version to 0.1.3 · tweag/timestats@9e1f9df · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Bump version to 0.1.3 #47

Bump version to 0.1.3

Bump version to 0.1.3 #47

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
build:
name: Build & Test - ghc ${{ matrix.ghc }}
runs-on: ubuntu-latest
strategy:
matrix:
cabal: ["3.6"]
ghc:
- "9.2.3"
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Setup GHC and cabal-install
uses: haskell-actions/setup@v2
with:
ghc-version: ${{ matrix.ghc }}
cabal-version: ${{ matrix.cabal }}
- name: Update package list
run: cabal update
- name: Build & Test
run: cabal test all --test-show-details=direct --flag devel
0