Skip to content

Commit

Permalink
Use cabal sdist for the check
Browse files Browse the repository at this point in the history
  • Loading branch information
philderbeast committed Feb 16, 2025
1 parent 6303456 commit 8f99cc3
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/check-install.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Check install
name: Check sdist

# See: https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#concurrency.
concurrency:
Expand All @@ -10,6 +10,7 @@ on:
paths:
- 'Cabal-QuickCheck/**'
- 'Cabal-described/**'
- 'Cabal-hooks/**'
- 'Cabal-syntax/**'
- 'Cabal-tests/**'
- 'Cabal-tree-diff/**'
Expand All @@ -22,6 +23,7 @@ on:
paths:
- 'Cabal-QuickCheck/**'
- 'Cabal-described/**'
- 'Cabal-hooks/**'
- 'Cabal-syntax/**'
- 'Cabal-tests/**'
- 'Cabal-tree-diff/**'
Expand Down Expand Up @@ -54,4 +56,12 @@ jobs:

- uses: actions/checkout@v4

- run: cabal install cabal-install --dry-run
- run: cabal sdist Cabal
- run: cabal sdist Cabal-QuickCheck
- run: cabal sdist Cabal-described
- run: cabal sdist Cabal-hooks
- run: cabal sdist Cabal-syntax
- run: cabal sdist Cabal-tests
- run: cabal sdist Cabal-tree-diff
- run: cabal sdist cabal-install
- run: cabal sdist cabal-install-solver

0 comments on commit 8f99cc3

Please sign in to comment.