Skip to content

ci(deps): bump peaceiris/actions-gh-pages from 2 to 3 #141

ci(deps): bump peaceiris/actions-gh-pages from 2 to 3

ci(deps): bump peaceiris/actions-gh-pages from 2 to 3 #141

Workflow file for this run

name: New commit pushed and receive pull request
on:
pull_request:
push:
workflow_dispatch:
inputs:
git_rev:
description: 'git revision'
required: false
default: ''
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v2
with:
fetch-depth: 0
ref: '${{ github.event.inputs.git_rev }}'
- name: Set up Python 3.10
uses: actions/setup-python@v1
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install -U pip poetry invoke
inv env.init-dev --no-pre-commit
- name: Style check
run: |
inv style
- name: Check vulnerability
run: |
inv secure
- name: Run tests
run: |
inv test