Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
correcting an error of indentation
  • Loading branch information
MichelRiff committed Jan 22, 2025
1 parent 178dac3 commit cf24dfd
Showing 1 changed file with 19 additions and 23 deletions.
42 changes: 19 additions & 23 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,26 +1,22 @@
name: QPS Project Tests
on:
push:
branches: [ dev ]

jobs:
tests:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v2

- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: 20

- name: Install Build Tools
run: sudo apt-get update && sudo apt-get install -y build-essential
push:
branches: [ dev ]

- name: Program verification Tests
run: |
cd src
g++ -std=c++11 -o main_verification main_verification.cpp verification.cpp -Wall -Werror
./main_verification
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: 20
- name: Install Build Tools
run: sudo apt-get update && sudo apt-get install -y build-essential
- name: Program verification Tests
run: |
cd src
g++ -std=c++11 -o main_verification main_verification.cpp verification.cpp -Wall -Werror
./main_verification

0 comments on commit cf24dfd

Please sign in to comment.