diff options
| author | seth <[email protected]> | 2023-04-04 23:23:28 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2023-04-05 20:34:12 -0400 |
| commit | 65d0b7a553f718b1ba34799e604ceb07c062af61 (patch) | |
| tree | 9a6b1c78aa6e79c2201ba124b536a05231b0ae20 /.github/workflows/ci.yml | |
| parent | ed076bbd6fc22b32ea353ae6bd3cac79d039719a (diff) | |
rewrite in rust :)
Diffstat (limited to '.github/workflows/ci.yml')
| -rw-r--r-- | .github/workflows/ci.yml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..ea06d85 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,23 @@ +name: ci + +on: + push: + pull_request: + workflow_dispatch: + +jobs: + build: + strategy: + matrix: + output: [teawiebot, container] + + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - uses: cachix/install-nix-action@v19 + with: + github_access_token: ${{ secrets.GITHUB_TOKEN }} + + - run: | + nix build .#${{ matrix.output }} |
