Use newer Go for Linux

This commit is contained in:
Wilson Lin 2020-07-11 02:45:45 +10:00
parent 0ba5947d5d
commit a98f9ef77d
1 changed files with 4 additions and 1 deletions

View File

@ -50,7 +50,10 @@ jobs:
run: brew install go
- name: Set up Go (Linux)
if: runner.os == 'Linux'
run: sudo apt install golang-go
run: |
sudo add-apt-repository -y ppa:longsleep/golang-backports
sudo apt update
sudo apt install golang-go
- name: Build CLI
working-directory: ./cli
run: cargo build --release -vvv