feat(pog): climod -> pog #138
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: "CI" | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
examples-std: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
submodules: "recursive" | |
- name: Setup | |
uses: ./.github/actions/common-setup | |
with: | |
SECRET_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Std Default | |
run: | | |
just std-default | |
- name: Std Standard | |
run: | | |
just std-standard | |
examples-jupyenv-quarto: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
submodules: "recursive" | |
- name: Setup | |
uses: ./.github/actions/common-setup | |
with: | |
SECRET_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: nixci-jupyenv-quarto | |
run: | | |
nix profile install nixpkgs#tectonic | |
just nixci-jupyenv quarto | |
examples-packages: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
submodules: "recursive" | |
- name: Setup | |
uses: ./.github/actions/common-setup | |
with: | |
SECRET_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: nixci-packages | |
run: just nixci-examples-packages | |
examples-simple: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
submodules: "recursive" | |
- name: Setup | |
uses: ./.github/actions/common-setup | |
with: | |
SECRET_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build example | |
run: just examples-simple | |
examples-system-manager: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
submodules: "recursive" | |
- name: Setup | |
uses: ./.github/actions/common-setup | |
with: | |
SECRET_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build example | |
run: just examples-system-manager | |
examples-python: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
submodules: "recursive" | |
- name: Setup | |
uses: ./.github/actions/common-setup | |
with: | |
SECRET_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: nixci-python | |
run: just nixci-examples-python |