summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authora1346054 <36859588+a1346054@users.noreply.github.com>2021-08-24 19:58:55 +0000
committerDaniel Friesel <derf@chaosdorf.de>2022-01-03 10:24:07 +0100
commitd89975957d54ac901ce52e6e3b9ca95d96048f8f (patch)
treec96709f1790f19590a69191bcedae0ae6d400209 /.github/workflows
parent2a9a7e2557407d5b0c7e6b9680828fb431776ff5 (diff)
Trim trailing whitespace
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/c.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/c.yml b/.github/workflows/c.yml
index e7a4207..5477164 100644
--- a/.github/workflows/c.yml
+++ b/.github/workflows/c.yml
@@ -27,12 +27,12 @@ jobs:
run: sudo apt-get -y install build-essential libx11-dev libxt-dev libimlib2-dev libtest-command-perl libtest-simple-perl
- name: Install libcurl
if: matrix.curl
- run: sudo apt-get -y install libcurl4-openssl-dev
+ run: sudo apt-get -y install libcurl4-openssl-dev
- name: Install libexif
if: matrix.exif
- run: sudo apt-get -y install libexif-dev
+ run: sudo apt-get -y install libexif-dev
- name: Install Xinerama
if: matrix.xinerama
- run: sudo apt-get -y install libxinerama-dev
+ run: sudo apt-get -y install libxinerama-dev
- name: Build and Test
run: for inotify in 0 1; do for verscmp in 0 1; do make curl=${{ matrix.curl }} exif=${{ matrix.exif }} inotify=$inotify verscmp=$verscmp xinerama=${{ matrix.xinerama }} && make test && make clean; done; done