-
Notifications
You must be signed in to change notification settings - Fork 164
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate CircleCI to GitHub Actions (#262)
- Loading branch information
Showing
1 changed file
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: Build | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
|
||
jobs: | ||
misspell: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Misspell Install | ||
run: make install-misspell | ||
|
||
- name: Misspell check | ||
run: make misspell | ||
|
||
markdownlint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Install Tools | ||
run: | | ||
make install-markdown-lint | ||
make install-markdown-link-check | ||
- name: Run Tools | ||
run: | | ||
make markdown-lint | ||
# Disabled for the moment because too many requests to github.com | ||
# and we receive errors for valid links. | ||
# make enforce-markdown-link-check |