1
1
mirror of https://github.com/theoludwig/libcproject.git synced 2024-09-19 21:35:53 +02:00
libcproject/.github/workflows/ci.yml

32 lines
630 B
YAML
Raw Normal View History

2023-01-05 21:13:10 +01:00
name: 'CI'
on:
push:
branches: [develop]
pull_request:
branches: [master, develop]
jobs:
ci:
runs-on: 'ubuntu-latest'
steps:
- uses: 'actions/checkout@v3.5.3'
2023-01-05 21:13:10 +01:00
- name: 'Install Build Tools'
run: 'sudo apt-get install --yes build-essential gcc make clang-format'
- run: 'make'
- run: 'make run'
- run: 'make test'
- run: 'make lint'
- run: 'make clean'
2023-01-06 14:40:15 +01:00
lint-commit:
runs-on: 'ubuntu-latest'
steps:
- uses: 'actions/checkout@v3.5.3'
2023-01-06 14:40:15 +01:00
with:
fetch-depth: 0
- uses: 'wagoid/commitlint-github-action@v5.4.1'