Fred Boniface
37e05e3eb1
Some checks failed
PIS Generate / validate_and_release (push) Failing after 9s
19 lines
407 B
YAML
19 lines
407 B
YAML
name: PIS Generate
|
|
|
|
run-name: PIS_Generator
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
validate_and_release:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out Repo code
|
|
uses: actions/checkout@v3
|
|
- name: Install yamllint
|
|
run: sudo apt-get install -y yamllint
|
|
- name: Validate YAML
|
|
run: yamllint .
|