Skip to content

Commit

Permalink
Merge branch 'master' of github.com:tristanisham/zvm
Browse files Browse the repository at this point in the history
  • Loading branch information
tristanisham committed Dec 8, 2022
2 parents 1c32722 + 5250355 commit d02f9d7
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
31 changes: 31 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go

name: Go

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:

build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
- name: Install dependencies
run: |
go get .
- name: Build
run: go build -v .

- name: Test
run: go test -v .
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ can lead to headaches when you need multiple versions of a language installed to
## Installation
Just download one of the release binaries for your system. No external dependencies required. Just a static binary.

Add `~/zvm/bin` to your path and `zvm` will automatically switch between versions of Zig before you.
Add `~/.zvm/bin` to your path and `zvm` will automatically switch between versions of Zig for you.

### Community Package
#### AUR
Expand Down

0 comments on commit d02f9d7

Please sign in to comment.