pushover title and url #17
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Ubuntu" | |
on: | |
push: | |
paths: | |
- '*.pl' | |
pull_request: | |
paths: | |
- '*.pl' | |
workflow_dispatch: | |
jobs: | |
ubuntu-2004: | |
name: Test Ubuntu | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install dependencies 🔧 | |
run: | | |
sudo apt-get install \ | |
libapp-options-perl \ | |
libwww-perl \ | |
libjson-xs-perl | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v4 | |
# Get versions | |
- name: Versions 📏 | |
run: cd t/ && bash test.sh |