Run ci workflow for every commit #22
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
env: | |
AZURE_FUNCTIONAPP_PACKAGE_PATH: "." | |
PYTHON_VERSION: "3.11" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Code analysis and tests | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ env.PYTHON_VERSION }} | |
- name: Create and start virtual environment | |
run: | | |
python -m venv venv | |
source venv/bin/activate | |
- name: Install dependencies | |
run: | | |
pip install -r requirements.txt | |
- name: Lint with pylint | |
run: | | |
pylint $(git ls-files '*.py') | |
- name: Check formatting with black | |
run: | | |
black $(git ls-files '*.py') --check --diff | |
- name: Tests | |
run: | | |
python -m unittest discover -s test -p "test_*.py" | |
- name: Zip artifact for deployment | |
run: zip release.zip ./* -r | |
- name: Upload artifact for deployment job | |
uses: actions/upload-artifact@v3 | |
with: | |
name: python-app | |
path: | | |
release.zip | |
!venv/ | |
deploy: | |
runs-on: ubuntu-latest | |
needs: build | |
environment: | |
name: "production" | |
url: ${{ steps.deploy-to-function.outputs.webapp-url }} | |
permissions: | |
id-token: write #This is required for requesting the JWT | |
steps: | |
- name: Download artifact from build job | |
uses: actions/download-artifact@v3 | |
with: | |
name: python-app | |
- name: Unzip artifact for deployment | |
run: unzip release.zip | |
- name: Login to Azure | |
uses: azure/login@v1 | |
with: | |
client-id: ${{ secrets.__clientidsecretname__ }} | |
tenant-id: ${{ secrets.__tenantidsecretname__ }} | |
subscription-id: ${{ secrets.__subscriptionidsecretname__ }} | |
- name: "Deploy to Azure Functions" | |
uses: Azure/functions-action@v1 | |
id: deploy-to-function | |
with: | |
app-name: "geodatenbezug" | |
slot-name: "production" | |
package: ${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }} | |
scm-do-build-during-deployment: true | |
enable-oryx-build: true |