mirror of
https://github.com/zplug/zplug
synced 2026-03-07 06:31:48 +01:00
20 lines
322 B
YAML
20 lines
322 B
YAML
name: Test
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Install dependencies
|
|
run: sudo apt-get update && sudo apt-get install -y zsh gawk
|
|
|
|
- name: Run tests
|
|
run: make test
|