Skip to content

Commit

Permalink
Creating second build
Browse files Browse the repository at this point in the history
  • Loading branch information
noahgift authored Oct 15, 2020
1 parent 2007ab4 commit a4aedd5
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/gcp.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit a4aedd5

Please sign in to comment.