Skip to content

Commit

Permalink
Merge pull request #6 from dzbarsky/test_windows
Browse files Browse the repository at this point in the history
Add CI
  • Loading branch information
dzbarsky authored Apr 1, 2024
2 parents 3901b8a + 56d25ae commit 0477d9b
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: run-tests

on: [push]

jobs:
test:
strategy:
matrix:
platform: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Test
working-directory: tests
run: bazel test //...

0 comments on commit 0477d9b

Please sign in to comment.