Skip to content

Commit

Permalink
Merge pull request #7 from private-attribution/check
Browse files Browse the repository at this point in the history
Add a build check for pull requests
  • Loading branch information
martinthomson authored Sep 12, 2024
2 parents 7dc8bb0 + d2afcbf commit 71f3dec
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: "Check API"

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:
name: "Build HTML"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- run: make

0 comments on commit 71f3dec

Please sign in to comment.