From a4aedd5b0106bfd5888f4ccd5b9e365a307e856b Mon Sep 17 00:00:00 2001 From: Noah Gift Date: Thu, 15 Oct 2020 11:20:47 -0400 Subject: [PATCH] Creating second build --- .github/workflows/gcp.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/gcp.yml diff --git a/.github/workflows/gcp.yml b/.github/workflows/gcp.yml new file mode 100644 index 0000000..179c5e9 --- /dev/null +++ b/.github/workflows/gcp.yml @@ -0,0 +1,20 @@ +name: Python application test with Github Actions +on: [push] +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Set up Python 3.7.9 + uses: actions/setup-python@v1 + with: + python-version: 3.7.9 + - name: Install dependencies + run: | + make install + - name: Lint + run: | + make lint + - name: Test + run: | + make test