Updated build step branch #2
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: build | ||
Check failure on line 1 in .github/workflows/build.yaml
|
||
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 |