···11-# To get started with Dependabot version updates, you'll need to specify which
22-# package ecosystems to update and where the package manifests are located.
33-# Please see the documentation for more information:
44-# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
55-# https://containers.dev/guide/dependabot
66-77-version: 2
88-updates:
99- - package-ecosystem: "devcontainers"
1010- directory: "/"
1111- schedule:
1212- interval: weekly
+29
.tangled/workflows/check.yaml
···11+when:
22+ - event: ["push", "manual"]
33+ branch: ["develop"]
44+ - event: ["pull_request"]
55+ branch: ["main"] # We have no main, yet.
66+77+engine: "nixery"
88+99+# using the default values
1010+clone:
1111+ skip: false
1212+ depth: 1
1313+ submodules: false
1414+1515+dependencies:
1616+ nixpkgs/nixpkgs-unstable:
1717+ # I wish I could just use the flake, but alas aargh
1818+ - mise
1919+2020+#environment:
2121+# MY_ENV_VAR: "MY_ENV_VALUE"
2222+2323+steps:
2424+ - name: "Run tests through Mise"
2525+ # I don't think this'll work, we have no database to reflect from!
2626+ command: "mise i && mise run check"
2727+ environment:
2828+ GOOS: "darwin"
2929+ GOARCH: "arm64"