Skip to content

Use Getopt to parse CLI arguments (#4) #9

Use Getopt to parse CLI arguments (#4)

Use Getopt to parse CLI arguments (#4) #9

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: make
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.9'
- run: pip install cpplint===1.6.1
- run: sudo apt install cppcheck -y
- run: make lint
dist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: make dist