optimized #957
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: | |
branches: [ master, dev ] | |
pull_request: | |
branches: [ master, dev ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
version: [20.04, 22.04] | |
container: ubuntu:${{ matrix.version }} | |
steps: | |
- run: apt -y update | |
- run: apt -y install curl xz-utils g++ | |
- uses: actions/checkout@v4 | |
- run: ./ppkg --help | |
- run: ./ppkg --version | |
- run: ./ppkg setup | |
- run: ./ppkg about | |
- run: ./ppkg integrate zsh | |
- run: ./ppkg update | |
- run: ./ppkg search lib | |
- run: ./ppkg search uctags | |
- run: ./ppkg info-available uctags | |
- run: ./ppkg info-available uctags summary | |
- run: ./ppkg info-available uctags web-url | |
- run: ./ppkg info-available uctags version | |
- run: ./ppkg depends uctags | |
- run: ./ppkg install uctags | |
- run: ./ppkg tree uctags | |
- run: ./ppkg pack uctags -t tar.gz | |
- run: ./ppkg pack uctags -t tar.xz | |
- run: ./ppkg pack uctags -t tar.bz2 | |
- run: ./ppkg pack uctags -t zip | |
- run: ./ppkg export.deb uctags | |
- run: ./ppkg export.deb uctags -o ~/ | |
- run: ./ppkg export.deb uctags -o a/b.deb | |
- run: dpkg -i a/b.deb | |
- run: dpkg -L uctags | |
- run: ./ppkg formula-repo-list | |
- run: ./ppkg ls-available | |
- run: ./ppkg ls-installed | |
- run: ./ppkg ls-outdated | |
- run: ./ppkg is-available uctags | |
- run: ./ppkg is-installed uctags | |
- run: ./ppkg is-outdated uctags || echo "not outdated" | |
- run: ./ppkg info-installed uctags installed-dir | |
- run: ./ppkg info-installed uctags installed-files | |
- run: ./ppkg info-installed uctags builtat | |
- run: ./ppkg info-installed uctags builtat-rfc-3339-utc | |
- run: ./ppkg info-installed uctags builtat-iso-8601-utc | |
- run: ./ppkg info-installed uctags builtat-rfc-3339 | |
- run: ./ppkg info-installed uctags builtat-iso-8601 | |
- run: ./ppkg uninstall uctags | |
- run: ./ppkg fetch curl | |
- run: ./ppkg upgrade-self |