Skip to content

Fix

Fix #5

Workflow file for this run

name: Test
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
test:

Check failure on line 10 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / Test

Invalid workflow file

The workflow is not valid. .github/workflows/test.yml (Line: 10, Col: 3): The workflow must contain at least one job with no dependencies.
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v3
- name: CMake generation
run: cmake .
- name: make
run: make
- name: CMake release
run: cmake -DCMAKE_BUILD_TYPE=Debug .
- name: make
run: make
- name: Install valgrind
run: sudo apt-get install valgrind
- name: Run valgrind
run: valgrind ./merlin