Skip to content

Commit

Permalink
add actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
keyasuda committed Aug 14, 2024
1 parent 08625cf commit 5bb1381
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Test

on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Setup Pulsar
run: |
sudo apt install -y libnotify4
wget https://github.com/pulsar-edit/pulsar/releases/download/v1.119.0/Linux.pulsar_1.119.0_amd64.deb
sudo dpkg -i Linux.pulsar_1.119.0_amd64.deb
- name: Install dependencies
run: ppm i
- name: Run tests
run: ppm test

0 comments on commit 5bb1381

Please sign in to comment.