Skip to content

break tests

break tests #3

Workflow file for this run

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