1name: test-bindings 2 3on: 4 push: 5 branches: [main] 6 pull_request: 7 branches: [main] 8 9jobs: 10 python_bindings: 11 runs-on: ubuntu-latest 12 13 steps: 14 - uses: actions/checkout@v2 15 - name: Set up Python 16 uses: actions/setup-python@v1 17 with: 18 python-version: 3.8 19 - name: Install benchmark 20 run: 21 python setup.py install 22 - name: Run example bindings 23 run: 24 python bindings/python/google_benchmark/example.py 25