Skip to content

Commit

Permalink
[CI] Add CI workflow configuration
Browse files Browse the repository at this point in the history
* CI for testing OTB builds in Nix.
  • Loading branch information
daspk04 committed Jul 29, 2024
1 parent 31e79b8 commit 8b54f10
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: CI

on:
pull_request:
push:
branches: [main]
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
- uses: DeterminateSystems/magic-nix-cache-action@main
with:
diagnostic-endpoint: ""
- run: nix build .

0 comments on commit 8b54f10

Please sign in to comment.