Skip to content

Commit

Permalink
tests github action
Browse files Browse the repository at this point in the history
  • Loading branch information
atar13 committed Oct 12, 2023
1 parent eae0b45 commit 5f08b71
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Tests

on:
push:
branches:
- master
- feat/test-gh-actions # remove once action works
pull_request:

jobs:
test:
name: Google C++ tests
runs-on: ubuntu-latest

steps:
- name: Install Cmake
run: sudo apt install cmake

- name: Checkout Repo
uses: actions/checkout@v2
with:
submodules: true
token: ${{ secrets.SSH_TOKEN }}

- name: Install dependencies
run: cmake .

- name: Run tests
run: make test



0 comments on commit 5f08b71

Please sign in to comment.