Skip to content

Updated build step branch #2

Updated build step branch

Updated build step branch #2

Workflow file for this run

name: build

Check failure on line 1 in .github/workflows/build.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/build.yaml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: build-gui-for-windows, build-gui-linux, doctoc, linter-py
on:
push:
branches:
- develop
pull_request:
branches:
- develop
jobs:
prettier:
name: Format code using black
runs-on: ubuntu-20.04
timeout-minutes: 5
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Run black
uses: psf/back@stable
with:
options: "--check --verbose"
doctoc:
name: Build docs
runs-on: ubuntu-20.04
linter-py:
name: Lint code using PyLint
runs-on: ubuntu-20.04
build-gui-linux:
name: Build GUI for Linux (Ubuntu)
runs-on: ubuntu-20.04
build-gui-for-windows:
name: Build GUI for Windows
runs-on: windows-latest
build-gui-for-mac:
name: Build GUI for Mac
runs-on: macos-latest
steps:
- uses: actions/checkout@v4