From 535a38a138c9f05a2f28486f763095aef9d63eed Mon Sep 17 00:00:00 2001 From: Patrick Carlson Date: Wed, 31 Aug 2022 18:36:47 -0600 Subject: [PATCH] add Github action for testing the build step --- .github/workflows/test_build.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/test_build.yml diff --git a/.github/workflows/test_build.yml b/.github/workflows/test_build.yml new file mode 100644 index 0000000..1411b2c --- /dev/null +++ b/.github/workflows/test_build.yml @@ -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