Skip to content

screw hermetic toolchains. #15

screw hermetic toolchains.

screw hermetic toolchains. #15

Workflow file for this run

name: Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true
permissions: read-all
jobs:
# TOOD: lint
test:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: bazelbuild/setup-bazelisk@v2
- if: matrix.os == 'ubuntu-latest'
name: 📦 Install packages
run: sudo apt-get install -y xorriso
- name: 📦 Cache
uses: actions/cache@v3
with:
path: ~/.cache/bazel
key: ${{ runner.os }}
- name: 🛠️ Build
run: bazel build //...
- name: 🧪 Test
run: bazel test //...