diff options
author | bnewbold <bnewbold@robocracy.org> | 2023-03-27 08:16:17 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-27 10:16:17 -0500 |
commit | 2789d5c05647e3d6d6ae5d6e226b4218ed4a16d1 (patch) | |
tree | fb266710c9865130c2d10e389c6429802fd8515c /bskyweb/go.mod | |
parent | 4fbe0e267ccf0adfcdd8b0c66107f1e1717ca31a (diff) | |
download | voidsky-2789d5c05647e3d6d6ae5d6e226b4218ed4a16d1.tar.zst |
Basic golang CI setup (#360)
* bskyweb: Makefile and dev env This matches the setup for local dev testing in atproto and indigo repos. * gitignore: don't ignore self and .github/ * CI: golang build+test and lint actions * bskyweb: better use of godotenv A recent change from indigo. * prettier: ignore top-level app.json * CI: bump from golang 1.19 to 1.20 * bskyweb: update to golang 1.20
Diffstat (limited to 'bskyweb/go.mod')
-rw-r--r-- | bskyweb/go.mod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bskyweb/go.mod b/bskyweb/go.mod index f6e03f4fd..a81a74acf 100644 --- a/bskyweb/go.mod +++ b/bskyweb/go.mod @@ -1,6 +1,6 @@ module github.com/bluesky-social/social-app/bskyweb -go 1.19 +go 1.20 require ( github.com/bluesky-social/indigo v0.0.0-20230307000525-294e33e70185 |