Adding upstream version 3.5.1.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
e37d4622a7
commit
097626e61a
57 changed files with 6023 additions and 0 deletions
26
.github/workflows/macos-latest.yml
vendored
Normal file
26
.github/workflows/macos-latest.yml
vendored
Normal file
|
@ -0,0 +1,26 @@
|
|||
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 ./...
|
26
.github/workflows/ubuntu-latest.yml
vendored
Normal file
26
.github/workflows/ubuntu-latest.yml
vendored
Normal file
|
@ -0,0 +1,26 @@
|
|||
name: Ubuntu-latest
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
|
||||
build-and-test:
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
go-version: [1.13, 1.17]
|
||||
runs-on: ubuntu-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 ./...
|
26
.github/workflows/windows-latest.yml
vendored
Normal file
26
.github/workflows/windows-latest.yml
vendored
Normal file
|
@ -0,0 +1,26 @@
|
|||
name: Windows-latest
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
|
||||
build-and-test:
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
go-version: [1.13, 1.17]
|
||||
runs-on: windows-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 ./...
|
Loading…
Add table
Add a link
Reference in a new issue