Skip to content
This repository has been archived by the owner on Mar 19, 2024. It is now read-only.

Commit

Permalink
Merge pull request #26 from carlsonp/gh-action-test-build
Browse files Browse the repository at this point in the history
add Github action for testing the build step
  • Loading branch information
sfisher authored Mar 19, 2024
2 parents 5029abb + 535a38a commit bfee44f
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/test_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# validate YAML
# https://codebeautify.org/yaml-validator

name: github-actions
on: [push, pull_request]

jobs:
test-build:
name: test-build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run build
run: pip3 install -r requirements.txt

0 comments on commit bfee44f

Please sign in to comment.