Skip to content

Commit

Permalink
Merge pull request #23 from nvaishampayan517/ci/automate-builds
Browse files Browse the repository at this point in the history
ci: Automatically build for new pushes/pull requests.
  • Loading branch information
kylechui authored Feb 17, 2024
2 parents 71887a3 + f4ef5a7 commit df07f7d
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: CI

on:
workflow_dispatch:
push:
branches: [main]
pull_request:
branches: ['**'] # Run workflows for pull requests to *any* branch

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Install Nix
uses: cachix/install-nix-action@25

- name: Build release
run: nix develop --command make

0 comments on commit df07f7d

Please sign in to comment.