Skip to content

feat: handle assets in subdir after extraction (#23) #14

feat: handle assets in subdir after extraction (#23)

feat: handle assets in subdir after extraction (#23) #14

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 'stable'
- name: Build
run: go build -v .
- name: Test install on Linux
if: matrix.os == 'ubuntu-latest'
run: make test-linux
- name: Test install on Windows
if: matrix.os == 'windows-latest'
run: make test-windows
- name: Test install on macOS
if: matrix.os == 'macOS-latest'
run: make test-macos