1
1
mirror of https://github.com/theoludwig/libcproject.git synced 2025-05-21 23:21:15 +02:00

feat: first release

This commit is contained in:
Divlo
2023-01-05 21:13:10 +01:00
parent 0fa82c5772
commit cf6b7db16d
25 changed files with 486 additions and 39 deletions

22
.github/workflows/ci.yml vendored Normal file
View File

@ -0,0 +1,22 @@
name: 'CI'
on:
push:
branches: [develop]
pull_request:
branches: [master, develop]
jobs:
ci:
runs-on: 'ubuntu-latest'
steps:
- uses: 'actions/checkout@v3.0.0'
- 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'