mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-23 04:43:03 +01:00
18 lines
367 B
YAML
18 lines
367 B
YAML
name: CI (Bazel)
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
jobs:
|
|
build:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [macos-latest, ubuntu-latest, windows-latest]
|
|
env:
|
|
BAZELISK_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- run: .github/bazel.sh
|
|
shell: bash
|