Skip to content
name: Integration Tests
on:
pull_request:
branches:
- 'ubuntu/**'
concurrency:
group: 'ci-${{ github.workflow }}-${{ github.ref }}'
cancel-in-progress: true
defaults:
run:
shell: sh -ex {0}
env:
RELEASE: focal
jobs:
quilt-patch-apply:
runs-on: ubuntu-22.04
steps:
- name: "Checkout"
uses: actions/checkout@v3
with:
# Fetch all branches for merging
fetch-depth: 0
- name: "Prepare dependencies"
run: |
sudo DEBIAN_FRONTEND=noninteractive apt-get update
sudo DEBIAN_FRONTEND=noninteractive apt-get -y install tox quilt
- name: "Setup quilt environment"
run: |
echo 'QUILT_PATCHES=debian/patches' >> ~/.quiltrc
echo 'QUILT_SERIES=debian/patches/series' >> ~/.quiltrc
- name: Daily recipe check: quilt patches apply successfully and tests run

Check failure on line 37 in .github/workflows/packaging-tests.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/packaging-tests.yml

Invalid workflow file

You have an error in your yaml syntax on line 37
run: |
quilt push -a
tox -e py3
quilt pop -a