Skip to content

Commit

Permalink
Migrate CircleCI to GitHub Actions (#262)
Browse files Browse the repository at this point in the history
  • Loading branch information
trask authored Jul 11, 2024
1 parent 6d6febf commit 87b36a6
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/build.yml
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

0 comments on commit 87b36a6

Please sign in to comment.