Skip to content

More workflows

More workflows #2

Workflow file for this run

name: Run Tests
on:
push:
branches: [ main ]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Install build tools
run: sudo apt-get update && sudo apt-get install -y build-essential
- name: Build project
run: make
- name: Make script executable
run: chmod +x test.sh
- name: Run tests
run: ./test.sh