Skip to content

gh workflow

gh workflow #1

Workflow file for this run

name: build
permissions:
contents: write
on:
push:
branches:
- main
jobs:
'build and deploy':

Check failure on line 12 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / build

Invalid workflow file

The workflow is not valid. .github/workflows/build.yml (Line: 12, Col: 3): The identifier 'build and deploy' is invalid. IDs may only contain alphanumeric characters, '_', and '-'. IDs must start with a letter or '_' and and must be less than 100 characters.
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.11
uses: actions/setup-python@v2
with:
python-version: '3.11'
- name: Install dependencies
run: |
pip install "git+https://github.com/skrub-data/skrub.git@main"
- name: Build the site
run: |
python build.py
- name: GitHub Pages action
uses: peaceiris/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: _build