All checks were successful
Quality Check / Linting (push) Successful in 7s
Build Application / build (tower_defence_web, build/*, build, build/index.html, Web) (push) Successful in 14s
Build Application / build (tower_defence.elf, tower_defence.elf, tower_defence.elf, Linux) (push) Successful in 17s
Build Application / build (tower_defence.exe, tower_defence.exe, tower_defence.exe, Windows) (push) Successful in 19s
Build Application / release (push) Successful in 8s
Build Application / build-docker (push) Successful in 10s
20 lines
393 B
YAML
20 lines
393 B
YAML
name: "Quality Check"
|
|
|
|
on:
|
|
- push
|
|
- pull_request
|
|
|
|
jobs:
|
|
lint:
|
|
name: "Linting"
|
|
runs-on: stable
|
|
container:
|
|
image: "git.euph.dev/actions/runner-redot-4.3:latest"
|
|
steps:
|
|
- name: "Checkout"
|
|
uses: "https://git.euph.dev/actions/checkout@v3"
|
|
- name: "Check Linting"
|
|
run: gdlint .
|
|
- name: "Check Formatting"
|
|
run: gdformat -c -d .
|
|
|