Skip to content

chore: get rid of "python" in flavor of rules_python #165

chore: get rid of "python" in flavor of rules_python

chore: get rid of "python" in flavor of rules_python #165

Workflow file for this run

name: Continuous integration
on:
pull_request:
push:
branches: ['master'] # ['**']
tags: [v*]
jobs:
integration-tests:
name: Run integration tests
strategy:
fail-fast: true
matrix:
os:
- ubuntu-latest # x86_64-linux
- macos-latest # aarch64
- macos-13 # x86_64-darwin
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@main
- uses: DeterminateSystems/magic-nix-cache-action@main
- name: Bazel disk cache
uses: actions/cache@v4
env:
# Bump this number to invalidate the GH actions cache
cache-id: 1
with:
save-always: true
path: |
~/.bazel-disk-cache
key: ${{ matrix.os }}-bazel-ci-cache-${{ env.cache-id }}
- name: Integration tests
run: |
nix develop -i --command bazel test //examples:integration_tests --config=ci