mirror of
https://github.com/lloeki/apply.git
synced 2025-12-06 09:24:38 +01:00
28 lines
435 B
YAML
28 lines
435 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ $default-branch ]
|
|
pull_request:
|
|
branches: [ $default-branch ]
|
|
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Install required packages
|
|
run: >-
|
|
sudo apt-get install
|
|
bash
|
|
busybox
|
|
dash
|
|
ksh
|
|
shellcheck
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Run tests
|
|
run: make test
|