fix lint error #27
Workflow file for this run
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: Test pacman-git | |
# This workflow is triggered on pushes to the repository. | |
on: | |
push: | |
branches-ignore: | |
- pacman* | |
paths-ignore: | |
- "examples/**" | |
- "Dockerfile" | |
- "**/builder-image.yml" | |
pull_request: | |
jobs: | |
build: | |
name: Build and test go-alpm | |
runs-on: ubuntu-latest | |
container: | |
image: jguer/yay-builder:latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Build and install pacman-git | |
run: | | |
useradd github | |
pacman -Syu --noconfirm --overwrite=* --needed sudo base-devel git | |
echo "github ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers | |
git clone https://aur.archlinux.org/pacman-git | |
chown -R github pacman-git | |
su github -c "cd pacman-git; yes | makepkg -si --nocheck" | |
- name: Run Build and Tests with pacman-git | |
run: make test |