Some checks failed
Test stage / check and test (push) Failing after 6s
Signed-off-by: Uwe Hermann <uh@uleenucks.de>
15 lines
279 B
YAML
15 lines
279 B
YAML
---
|
|
name: Test stage
|
|
on:
|
|
- push
|
|
|
|
jobs:
|
|
lint:
|
|
name: check and test
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Install shellcheck
|
|
run: apt update && apt install -y shellcheck
|
|
- name: test
|
|
run: ./shellcheck.sh |