From 03c77aeace621655d3100ce1b5cf2cf774ec75db Mon Sep 17 00:00:00 2001 From: Sergey Gulin Date: Fri, 28 Oct 2022 00:33:18 +1000 Subject: [PATCH 1/3] [Chore] Fix anchors in `README.md` --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 97138c4..13bd2e1 100644 --- a/README.md +++ b/README.md @@ -7,11 +7,11 @@ This library implements the integration between [tasty](https://hackage.haskell. The way tasty provides this integration is reimplementing HUnit primitives, and this does not work with test suites written with the original HUnit library. One issue we are aware of is that test failures are treated as plain exceptions, not true failures. -## Build Instructions [↑](#-patak) +## Build Instructions [↑](#tasty-hunit-compat) Run `make` to build everything. -## Usage [↑](#-patak) +## Usage [↑](#tasty-hunit-compat) Use `testCase` or more advanced primitives to lift HUnit's `Assertion` to tasty's `TestTree`. @@ -28,16 +28,16 @@ test_Reversals = ] ``` -## Issue Tracker [↑](#-patak) +## Issue Tracker [↑](#tasty-hunit-compat) We use GitHub issues as our issue tracker. You can login using your GitHub account to leave a comment or create a new issue. -## For Contributors [↑](#-patak) +## For Contributors [↑](#tasty-hunit-compat) Please see [CONTRIBUTING.md](.github/CONTRIBUTING.md) for more information. -## About Serokell [↑](#-patak) +## About Serokell [↑](#tasty-hunit-compat) `tasty-hunit-compat` is maintained and funded with ❤️ by [Serokell](https://serokell.io/). The names and logo for Serokell are trademark of Serokell OÜ. From d6190ca6a7bef209dda8b9bca7782f4f2c3c870d Mon Sep 17 00:00:00 2001 From: Sergey Gulin Date: Fri, 28 Oct 2022 00:16:06 +1000 Subject: [PATCH 2/3] [Chore] Update xrefcheck to v0.2.2 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a74b9cf..a61848b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: - uses: actions/checkout@v2 - uses: serokell/xrefcheck-action@v1 with: - xrefcheck-version: 0.1.2 + xrefcheck-version: 0.2.2 cabal: name: ${{ matrix.os }} / ghc ${{ matrix.ghc }} From 368a2e3461ce95caad4f5ab4786a99231757e4c5 Mon Sep 17 00:00:00 2001 From: Sergey Gulin Date: Fri, 28 Oct 2022 00:19:41 +1000 Subject: [PATCH 3/3] [Chore] Update GitHub actions --- .github/workflows/ci.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a61848b..8d99cfc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: name: Verify cross references runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: serokell/xrefcheck-action@v1 with: xrefcheck-version: 0.2.2 @@ -45,17 +45,17 @@ jobs: ghc: 8.4.4 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 if: github.event.action == 'opened' || github.event.action == 'synchronize' || github.event.ref == 'refs/heads/master' - - uses: actions/setup-haskell@v1.1.4 + - uses: haskell/actions/setup@v2 id: setup-haskell-cabal name: Setup Haskell with: ghc-version: ${{ matrix.ghc }} cabal-version: ${{ matrix.cabal }} - - uses: actions/cache@v1 + - uses: actions/cache@v3 name: Cache cabal-store with: path: ${{ steps.setup-haskell-cabal.outputs.cabal-store }} @@ -84,16 +84,16 @@ jobs: ghc: ["8.8.3"] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 if: github.event.action == 'opened' || github.event.action == 'synchronize' || github.event.ref == 'refs/heads/master' - - uses: actions/setup-haskell@v1.1.4 + - uses: haskell/actions/setup@v2 name: Setup Haskell Stack with: ghc-version: ${{ matrix.ghc }} stack-version: ${{ matrix.stack }} - - uses: actions/cache@v1 + - uses: actions/cache@v3 name: Cache ~/.stack with: path: ~/.stack @@ -110,6 +110,6 @@ jobs: reuse: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: REUSE Compliance Check uses: fsfe/reuse-action@v1