mirror of
https://github.com/cupcakearmy/autorestic.git
synced 2024-12-22 16:26:25 +00:00
chore(ci): install restic in test env
This commit is contained in:
parent
eb4013b51d
commit
8108c52f50
14
.github/workflows/ci.yml
vendored
14
.github/workflows/ci.yml
vendored
@ -4,11 +4,25 @@ on:
|
|||||||
push:
|
push:
|
||||||
branches: [master]
|
branches: [master]
|
||||||
|
|
||||||
|
env:
|
||||||
|
RESTIC_VERSION: "0.17.1"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- 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
|
- uses: actions/setup-go@v3
|
||||||
with:
|
with:
|
||||||
go-version: '^1.21'
|
go-version: '^1.21'
|
||||||
|
Loading…
Reference in New Issue
Block a user