Skip to content

Commit

Permalink
tests: run checks downloading images
Browse files Browse the repository at this point in the history
  • Loading branch information
alvarolopez committed Sep 26, 2024
1 parent 05b08d2 commit 3b1c9f4
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/run.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Check if download links are working

on:
push:
branches:
- '**'

pull_request:
branches:
- '**'
job:
run:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install package
run: |
python -m pip install --upgrade pip
python -m pip install .
- name: Run imgsync in download mode only
run: glance-imgsync --download-only

0 comments on commit 3b1c9f4

Please sign in to comment.