Skip to content

Commit

Permalink
ci: run ./configure in codespell
Browse files Browse the repository at this point in the history
Since it runs through make, the target may depend on variables that are
defined by ./configure (such as the ones in config.mk).
  • Loading branch information
kmk3 committed Aug 14, 2023
1 parent 81e8ae4 commit 1edc617
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ jobs:
run: sudo apt-get update -qy
- name: install dependencies
run: sudo apt-get install -qy codespell
- name: configure
run: ./configure || (cat config.log; exit 1)
- run: codespell --version
- name: codespell
run: make codespell

0 comments on commit 1edc617

Please sign in to comment.