Skip to content

Update actions.yaml #29

Update actions.yaml

Update actions.yaml #29

Workflow file for this run

name: ehfheatwaves
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Build
run: |
pip install .
- name: Test
run: |
cd tests
python run_tests.py
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- run: |
pip install -e .
pip install pdoc3
pdoc --html --force -c latex_math=True ehfheatwaves
- uses: actions/upload-pages-artifact@v3
with: html/
deploy:
needs: build
runs-on: ubuntu-latest
permissions:
pages: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
-id: deployment
uses: actions/deploy-pages@v4

Check failure on line 50 in .github/workflows/actions.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/actions.yaml

Invalid workflow file

You have an error in your yaml syntax on line 50