mirror of
https://github.com/thepigeongenerator/mcaselector-lite.git
synced 2025-12-17 11:05:45 +01:00
This is mainly to improve the clairity of the workflows, also allowing them to be used for the different "badges", showing the state of each.
18 lines
293 B
YAML
18 lines
293 B
YAML
name: lint
|
|
on:
|
|
push:
|
|
branches:
|
|
- '**'
|
|
pull_request:
|
|
branches:
|
|
- '**'
|
|
jobs:
|
|
compile:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: ghcr.io/thepigeongenerator/mcaselector-lite:latest
|
|
steps:
|
|
# TODO: add linting checking here
|
|
- run: echo "TODO"
|
|
|