Skip to content

Commit

Permalink
Merge pull request #153 from icy/add-github-actions
Browse files Browse the repository at this point in the history
[github-action] added
  • Loading branch information
icy authored Jun 17, 2021
2 parents 735b2ea + 14209ce commit 16c31ca
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
22 changes: 22 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: pacapt-tests

on:
push:
branches-ignore:
- no-we-want-to-run-check-on-all-branches

jobs:
smoke-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0

- name: shellcheck
run: |
sudo apt-get install libjson-perl liburi-perl
make shellcheck
- name: tests
run: make tests
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## `pacapt` - An `ArchLinux`'s pacman-like wrapper for many package managers

[![Build Status](https://travis-ci.org/icy/pacapt.svg?branch=ng)](https://travis-ci.org/icy/pacapt)
[![Build Status](https://github.com/icy/pacapt/actions)](https://github.com/icy/pacapt/actions/workflows/ci.yaml/badge.svg)

`pacapt` is a wrapper for many package managers.
Simply install package with `pacapt -S htop` or `pacapt install htop`
Expand Down

0 comments on commit 16c31ca

Please sign in to comment.