From 9dde2c54ef76a9ff127a31cd52fc89e865d19dc3 Mon Sep 17 00:00:00 2001 From: Gregor Grigorjan Date: Wed, 15 May 2024 06:16:20 +0300 Subject: [PATCH] feat(ci): add CI --- .github/dependabot.yml | 8 ++++++++ .github/workflows/ci.yaml | 15 +++++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 .github/dependabot.yml create mode 100644 .github/workflows/ci.yaml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..4604723b --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,8 @@ +version: 2 + +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "monthly" + diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 00000000..215471ef --- /dev/null +++ b/.github/workflows/ci.yaml @@ -0,0 +1,15 @@ +name: ci + +on: + push: + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4.1.5 + - uses: DeterminateSystems/nix-installer-action@v11 + - uses: DeterminateSystems/magic-nix-cache-action@main + - name: Build package + run: nix build -L +