Skip to content

Commit

Permalink
chore: Bump version.
Browse files Browse the repository at this point in the history
  • Loading branch information
iphydf committed Dec 25, 2021
1 parent 6357686 commit 38a5aae
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 11 deletions.
25 changes: 16 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,15 @@ jobs:
cabal-version: "3.2"

- name: Cache
uses: actions/cache@v1
uses: actions/cache@v2
env:
cache-name: cache-cabal
with:
path: ~/.cabal
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/*.cabal') }}-${{ hashFiles('**/cabal.project') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
path: |
~/.cabal/packages
~/.cabal/store
dist-newstyle
key: ${{ runner.os }}-${{ env.cache-name }}

- name: Install non-Haskell dependencies
run: if [ -f tools/prepare_third_party.sh ]; then tools/prepare_third_party.sh; fi
Expand All @@ -42,9 +41,17 @@ jobs:
enable-stack: true
stack-version: "latest"

- uses: freckle/stack-cache-action@main
- name: Cache
uses: actions/cache@v2
env:
cache-name: cache-stack
with:
path: |
~/.stack
.stack-work
key: ${{ runner.os }}-${{ env.cache-name }}

- name: Install dependencies
- name: Install non-Haskell dependencies
run: if [ -f tools/prepare_third_party.sh ]; then tools/prepare_third_party.sh; fi
- name: Run tests
run: stack test
2 changes: 1 addition & 1 deletion BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ haskell_library(
name = "hs-tokstyle",
srcs = glob(["src/**/*.*hs"]),
src_strip_prefix = "src",
version = "0.0.6",
version = "0.0.8",
visibility = ["//visibility:public"],
deps = [
"//hs-cimple",
Expand Down
2 changes: 1 addition & 1 deletion tokstyle.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: tokstyle
version: 0.0.6
version: 0.0.8
synopsis: TokTok C code style checker
description: TokTok C code style checker
homepage: https://toktok.github.io/tokstyle
Expand Down

0 comments on commit 38a5aae

Please sign in to comment.