mirror of
https://github.com/logos-co/logos-chat-module.git
synced 2026-08-31 04:41:07 +00:00
* chore: bump logos-chat for self-contained archive logos-chat now links its dependencies statically * feat: add CI
30 lines
568 B
YAML
30 lines
568 B
YAML
name: build
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
build:
|
|
name: Build
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [ubuntu-latest, macOS-latest]
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
|
|
- uses: cachix/install-nix-action@v31.9.1
|
|
with:
|
|
extra_nix_config: |
|
|
experimental-features = nix-command flakes
|
|
nix-path = nixpkgs=channel:nixos-unstable
|
|
|
|
- name: nix build
|
|
run: nix build --print-build-logs
|