fix Dockerfile.$flavor detection #1185
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [ '*' ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Update packages repository | |
run: | | |
sudo apt-get update | |
- name: Install libyaml-libyaml-perl | |
run: | | |
sudo apt-get install libyaml-libyaml-perl | |
- name: Install debdiff for debtransform test | |
run: | | |
sudo apt-get install devscripts | |
- name: Test | |
run: | | |
make test test-debtransform |