optimized #973
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: | |
- uses: actions/checkout@v4 | |
- run: ./ndk-pkg --help | |
- run: ./ndk-pkg -h | |
- run: ./ndk-pkg --version | |
- run: ./ndk-pkg -V | |
- run: ./ndk-pkg about | |
- run: ./ndk-pkg setup | |
- run: ./ndk-pkg sysinfo | |
- run: ./ndk-pkg integrate zsh | |
- run: ./ndk-pkg update | |
- run: ./ndk-pkg search lib | |
- run: ./ndk-pkg search uctags | |
- run: ./ndk-pkg info-available uctags | |
- run: ./ndk-pkg info-available uctags --yaml | |
- run: ./ndk-pkg info-available uctags --json | |
- run: ./ndk-pkg info-available uctags version | |
- run: ./ndk-pkg info-available uctags license | |
- run: ./ndk-pkg info-available uctags summary | |
- run: ./ndk-pkg info-available uctags web-url | |
- run: ./ndk-pkg info-available uctags git-url | |
- run: ./ndk-pkg info-available uctags git-sha | |
- run: ./ndk-pkg info-available uctags git-ref | |
- run: ./ndk-pkg info-available uctags src-url | |
- run: ./ndk-pkg info-available uctags src-sha | |
- run: ./ndk-pkg depends uctags | |
- run: ./ndk-pkg depends uctags -t dot | |
- run: ./ndk-pkg depends uctags -t box | |
- run: ./ndk-pkg depends uctags -t dot -o a/ | |
- run: ./ndk-pkg depends uctags -o uctags.box | |
- run: ./ndk-pkg install uctags | |
- run: ./ndk-pkg info-installed uctags --prefix | |
- run: ./ndk-pkg info-installed uctags --files | |
- run: ./ndk-pkg info-installed uctags version | |
- run: ./ndk-pkg info-installed uctags builtat | |
- run: ./ndk-pkg info-installed uctags builtat-iso-8601 | |
- run: ./ndk-pkg info-installed uctags builtat-rfc-3339 | |
- run: ./ndk-pkg info-installed uctags builtat-iso-8601-utc | |
- run: ./ndk-pkg info-installed uctags builtat-rfc-3339-utc | |
- run: ./ndk-pkg tree uctags | |
- run: ./ndk-pkg tree uctags -a | |
- run: ./ndk-pkg pack uctags | |
- run: ./ndk-pkg pack uctags -t tar.gz | |
- run: ./ndk-pkg pack uctags -t tar.xz | |
- run: ./ndk-pkg pack uctags -t tar.xz -o . | |
- run: ./ndk-pkg pack uctags -o . | |
- run: ./ndk-pkg pack uctags -o xx.tar.xz | |
- run: ./ndk-pkg formula-repo-list | |
- run: ./ndk-pkg ls-available | |
- run: ./ndk-pkg ls-installed | |
- run: ./ndk-pkg ls-outdated | |
- run: ./ndk-pkg is-available uctags | |
- run: ./ndk-pkg is-installed uctags | |
- run: ./ndk-pkg is-outdated uctags || echo "not outdated" | |
- run: ./ndk-pkg uninstall uctags | |
- run: ./ndk-pkg fetch curl | |
- run: ./ndk-pkg upgrade-self |