Skip to content

Merge pull request #17 from ADClock/dependabot/github_actions/peaceir… #48

Merge pull request #17 from ADClock/dependabot/github_actions/peaceir…

Merge pull request #17 from ADClock/dependabot/github_actions/peaceir… #48

Workflow file for this run

name: CI
on:
push:
branches:
- main
paths-ignore:
- "**.md"
pull_request:
paths-ignore:
- "**.md"
release:
types: [published]
jobs:
pipenv:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- uses: actions/cache@v3
with:
path: ~/.cache/pipenv
key: ${{ runner.os }}-pipenv-${{ hashFiles('**/Pipfile.lock') }}
restore-keys: |
${{ runner.os }}-pipenv-
- run: python3 -m pip install --upgrade pip pipenv
- run: pipenv sync --dev
- run: pipenv run mkdocs build --config-file ./mkdocs.yml