You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
971 B
39 lines
971 B
name: CI
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches: [master]
|
|
|
|
env:
|
|
RESTIC_VERSION: "0.17.1"
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Install restic@${{ env.RESTIC_VERSION }}
|
|
run: |
|
|
mkdir -p tools/restic
|
|
curl --fail --location --silent --show-error --output tools/restic/restic.bz2 \
|
|
"https://github.com/restic/restic/releases/download/v${RESTIC_VERSION}/restic_${RESTIC_VERSION}_linux_amd64.bz2"
|
|
bzip2 -d tools/restic/restic.bz2
|
|
chmod +x tools/restic/restic
|
|
echo "$GITHUB_WORKSPACE/tools/restic" >> "$GITHUB_PATH"
|
|
- run: restic version
|
|
|
|
- uses: actions/setup-go@v3
|
|
with:
|
|
go-version: '^1.21'
|
|
- run: go test -v ./...
|
|
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-go@v3
|
|
with:
|
|
go-version: '^1.21'
|
|
- run: go build -v .
|