Skip to content

Initial code

Initial code #2

Workflow file for this run

name: Python test
on:
pull_request:
branches: [ "main" ]
jobs:
build:
name: Build and test
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Python dependencies
run: |
sudo apt-get update
sudo apt-get install -y python3 python3-pip python3-virtualenv
pip install wheel
- name: Install fpm dependencies
run: |
sudo apt-get install -y ruby ruby-dev rubygems build-essential
sudo gem install -N fpm
- mane: Install dh-virtualenv dependencies

Check failure on line 25 in .github/workflows/python-test.yml

View workflow run for this annotation

GitHub Actions / Python test

Invalid workflow file

The workflow is not valid. .github/workflows/python-test.yml (Line: 25, Col: 9): Unexpected value 'mane'
run: |
sudo apt-get install -y build-essential debhelper devscripts equivs dh-virtualenv dh-python
- name: Verify code quality
run: |
cd python
pip install mypy flake8 pytest
mypy
flake8
pytest