Add weather #37
This file contains hidden or 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: Application installs | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - "main" | |
| pull_request: {} | |
| jobs: | |
| run-with-actions: | |
| name: Run with Actions | |
| uses: ./.github/workflows/reusable-test-actions.yml | |
| with: | |
| runs-on: "ubuntu-latest" | |
| arch: amd64 | |
| secrets: inherit | |
| run-project-builds: | |
| name: Run project builds | |
| uses: ./.github/workflows/reusable-test-projects.yml | |
| with: | |
| runs-on: "ubuntu-latest" | |
| arch: amd64 | |
| secrets: inherit | |
| run-on-fedora: | |
| name: Run on Fedora | |
| uses: ./.github/workflows/reusable-test-devenv.yml | |
| with: | |
| prefix-name: "dotfedora" | |
| runs-on: "ubuntu-latest" | |
| arch: amd64 | |
| secrets: inherit | |
| run-on-centos: | |
| name: Run on CentOS | |
| uses: ./.github/workflows/reusable-test-devenv.yml | |
| with: | |
| prefix-name: "dotcentos" | |
| runs-on: "ubuntu-latest" | |
| arch: amd64 | |
| secrets: inherit | |
| run-on-almalinux: | |
| name: Run on AlmaLinux | |
| uses: ./.github/workflows/reusable-test-devenv.yml | |
| with: | |
| prefix-name: "dotalma" | |
| runs-on: "ubuntu-latest" | |
| arch: amd64 | |
| secrets: inherit | |
| run-on-ubi9: | |
| name: Run on Ubi9 | |
| uses: ./.github/workflows/reusable-test-devenv.yml | |
| with: | |
| prefix-name: "dotubi9" | |
| runs-on: "ubuntu-latest" | |
| arch: amd64 | |
| secrets: inherit | |
| run-on-ubuntu: | |
| name: Run on Ubuntu | |
| uses: ./.github/workflows/reusable-test-devenv.yml | |
| with: | |
| prefix-name: "dotubuntu" | |
| runs-on: "ubuntu-latest" | |
| arch: amd64 | |
| secrets: inherit | |
| run-on-debian: | |
| name: Run on Debian | |
| uses: ./.github/workflows/reusable-test-devenv.yml | |
| with: | |
| prefix-name: "dotdebian" | |
| runs-on: "ubuntu-latest" | |
| arch: amd64 | |
| secrets: inherit |