Skip to content

Simplify CI workflow by removing working-directory #6

Simplify CI workflow by removing working-directory

Simplify CI workflow by removing working-directory #6

Workflow file for this run

steps:

Check failure on line 1 in .github/workflows/c-cpp.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/c-cpp.yml

Invalid workflow file

(Line: 1, Col: 5): Unexpected value 'steps', (Line: 1, Col: 5): Required property is missing: jobs
- name: Checkout code
uses: actions/checkout@v4
- name: Run configure
# Removed the working-directory line so it stays in the root
run: |
chmod +x ./configure
./configure
- name: make
run: make
- name: make check
run: make check