Skip to content

[automation] Auto-update linters version, help and documentation #43

[automation] Auto-update linters version, help and documentation

[automation] Auto-update linters version, help and documentation #43

Workflow file for this run

---
name: "Gitpod"
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set TERM environment variable
run: echo "TERM=xterm" >> $GITHUB_ENV
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version-file: '.python-version' # Read python version from a file .python-version
- name: Install dependencies
run: make bootstrap
- name: Run Gitpod tests
uses: nick-invision/retry@v2
with:
max_attempts: 3
timeout_minutes: 10
command: make gitpod-tests