Skip to content

git-quick-stats does not require a purge #62

git-quick-stats does not require a purge

git-quick-stats does not require a purge #62

Workflow file for this run

name: Tests
on:
push:
branches: [ master, develop ]
pull_request:
branches: [ master, develop ]
jobs:
test-ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
with:
submodules: true
- uses: actions/setup-python@main
with:
python-version: '3.11'
- uses: LunarWatcher/install-conan@master
- name: Build
run: |
mkdir build && cd build
cmake .. -DCMAKE_BUILD_TYPE=Release
make -j $(nproc)
- name: Run tests
run: |
cd build
make test -j $(nproc)