This repository has been archived by the owner on Nov 19, 2024. It is now read-only.
Fix tar path traversal through symlinks #159
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Macos-latest | |
on: [push, pull_request] | |
jobs: | |
build-and-test: | |
strategy: | |
matrix: | |
go-version: [1.13, 1.17] | |
runs-on: macos-latest | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Build | |
run: go build cmd/arc/main.go | |
- name: Test | |
run: go test -v ./... |