Skip to content

ci: add build step with directory listing to debug test build #5

ci: add build step with directory listing to debug test build

ci: add build step with directory listing to debug test build #5

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install dependencies (Linux)
run: |
sudo apt-get update
sudo apt-get install -y cmake build-essential
- name: Build
run: |
make build
ls -la build/
- name: Run Tests
run: make test