this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

I am aware this won't work for now but hopefully will? One day.


Signed-off-by: MLC Bloeiman <mar@strawmelonjuice.com>

+30 -12
-12
.github/dependabot.yml
··· 1 - # To get started with Dependabot version updates, you'll need to specify which 2 - # package ecosystems to update and where the package manifests are located. 3 - # Please see the documentation for more information: 4 - # https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates 5 - # https://containers.dev/guide/dependabot 6 - 7 - version: 2 8 - updates: 9 - - package-ecosystem: "devcontainers" 10 - directory: "/" 11 - schedule: 12 - interval: weekly
+29
.tangled/workflows/check.yaml
··· 1 + when: 2 + - event: ["push", "manual"] 3 + branch: ["develop"] 4 + - event: ["pull_request"] 5 + branch: ["main"] # We have no main, yet. 6 + 7 + engine: "nixery" 8 + 9 + # using the default values 10 + clone: 11 + skip: false 12 + depth: 1 13 + submodules: false 14 + 15 + dependencies: 16 + nixpkgs/nixpkgs-unstable: 17 + # I wish I could just use the flake, but alas aargh 18 + - mise 19 + 20 + #environment: 21 + # MY_ENV_VAR: "MY_ENV_VALUE" 22 + 23 + steps: 24 + - name: "Run tests through Mise" 25 + # I don't think this'll work, we have no database to reflect from! 26 + command: "mise i && mise run check" 27 + environment: 28 + GOOS: "darwin" 29 + GOARCH: "arm64"
+1
mise.toml
··· 1 1 [tools] 2 2 bun = "1.2.20" 3 + "cargo:sqlx-cli" = "latest" 3 4 gleam = "1.15.0" 4 5 just = "latest" 5 6 "rust" = { version = "1.94.0", components = "rust-analyzer" }