Skip to content

Commit

Permalink
Update google-test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
extio1 authored Apr 10, 2024
1 parent 36ed0d0 commit 2a8cb5f
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions .github/workflows/google-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,15 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- run: mkdir build; cd build
- run: ls -la
- run: cmake ..
- run: cmake --build .
- run: ./vector_test
# uses: actions/checkout@v3 ??????
- uses: actions/checkout@v4
- run: mkdir build
- run: cmake -Bbuild
- run: cmake --build build

test:
needs: [build]
runs-on: ubuntu-latest

steps:
- run: ./build/vector_test

0 comments on commit 2a8cb5f

Please sign in to comment.