mirror of
https://github.com/Jguer/yay.git
synced 2024-11-07 01:27:21 +01:00
86bba8a289
* fix devel sysupgrade * fix ci stuck on .po
23 lines
535 B
YAML
23 lines
535 B
YAML
name: Test against pacman
|
|
on:
|
|
pull_request:
|
|
|
|
jobs:
|
|
build:
|
|
name: Lint and test yay
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: jguer/yay-builder:latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/cache@v3
|
|
with:
|
|
path: ~/go/pkg/mod
|
|
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-go-
|
|
- name: Lint
|
|
run: /app/bin/golangci-lint run ./...
|
|
- name: Run Build and Tests
|
|
run: make test
|