name: Python application test with Github Actions on: push: branches: [dev] # to run this workflow manually from the Actions tab workflow_dispatch: jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Set up Python 3.8 uses: actions/setup-python@v1 with: python-version: 3.8 - name: Install dependencies run: | make setup - name: Format code run: | make format - name: Lint code run: | make lint