Skip to content

Check just version

Check just version #23

name: Build Executable Binary
on:
push:
branches: ['dev', 'cypress*']
jobs:
cypress-run:
runs-on: ubuntu-latest
steps:
- name: Checkout Source Repository
run: |
git clone https://github.com/bcgov/gwa-cli.git -b dev
cd gwa-cli
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20.5'
- name: set up Just
uses: extractions/setup-just@v1
with:
just-version: 1.14.0
- name: Debug
run: |
cd gwa-cli
just --version
# - name: Upload Binary
# uses: actions/upload-artifact@v2
# with:
# name: gwa
# path: /usr/local/bin # Replace with the path to your built binary
# - name: Check GWA help
# run: gwa -h