Skip to content

Commit

Permalink
👷 Add basic CI for experimental branch
Browse files Browse the repository at this point in the history
  • Loading branch information
boisgera committed Jul 27, 2024
1 parent d0a01e1 commit a961262
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/experimental.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: experimentak
on: [workflow_dispatch]


jobs:
main:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
defaults:
run:
shell: bash -l {0}
steps:
- name: Checkout experimental branch
uses: actions/checkout@v4
with:
ref: my-branch

- name: Activate Conda environment
uses: conda-incubator/setup-miniconda@v3
with:
activate-environment: pandoc
environment-file: environment.yml

- name: Install LaTeX (Ubuntu)
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install texlive-full
- name: Install Python pandoc
run: python setup.py install

- name: Test Python pandoc
run: python test.py && python test.py -v

0 comments on commit a961262

Please sign in to comment.