Skip to content

Create makefile.yml

Create makefile.yml #1

Workflow file for this run

name: Makefile CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
sudo apt update
sudo apt install -y shellcheck
sudo pip install cram
- name: Run shellcheck
run: make shellcheck
- name: Run tests
run: make test