ci: add actions/checkout@v2 to main.yml

This commit is contained in:
Johan Malm 2021-09-22 20:14:11 +01:00 committed by GitHub
parent cce3c8cda0
commit d228bab4b8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,12 +11,15 @@ jobs:
pacman -Syu --noconfirm
pacman -S --noconfirm git meson clang wlroots libdrm libinput \
wayland-protocols cairo pango libxml2 xorg-xwayland
- uses: actions/checkout@v2
- name: build with gcc
run: |
export CC=gcc
meson build-gcc/ --werror
ninja -C build-gcc/
- name: build with clang
run: |
export CC=clang
meson build-clang/ --werror
ninja -C build-clang/