Sith/.github/workflows/unittests.yml

18 lines
198 B
YAML
Raw Normal View History

name: Unit Testing
2022-08-25 19:14:04 +00:00
on: [push]
jobs:
unittests:
2022-08-25 19:14:04 +00:00
runs-on: ubuntu-latest
steps:
- run: echo 'Dry test'
2022-08-25 19:14:04 +00:00
lint:
runs-on: ubuntu-latest
steps:
- run: echo 'Dry lint'
2022-08-25 19:17:19 +00:00