diff --git a/.forgejo/workflows/build.yaml b/.forgejo/workflows/build.yaml new file mode 100644 index 0000000..a9ae19c --- /dev/null +++ b/.forgejo/workflows/build.yaml @@ -0,0 +1,8 @@ +on: [push] +jobs: + test: + runs-on: docker + container: + image: alpine:3.19 + steps: + - run: echo Verifying builds diff --git a/README.md b/README.md index bb27656..c71220e 100644 --- a/README.md +++ b/README.md @@ -10,11 +10,12 @@ code is copied to this implementation (and slightly modified). ## Usage -This library is not yet published. +This artifact is available in the Garrity Software Maven repository. ```scala -object GS { - val UUID: ModuleID = - "gs" %% "gs-uuid-v0" % "0.1.0" -} +externalResolvers += + "Garrity Software Releases" at "https://maven.garrity.co/releases" + +val GsUuid: ModuleID = + "gs" %% "gs-uuid-v0" % "0.1.0" ```