Skip to content

Trying to fix the node.js 16 warning by removing the specific version… #73

Trying to fix the node.js 16 warning by removing the specific version…

Trying to fix the node.js 16 warning by removing the specific version… #73

Workflow file for this run

name: pip
on:
push:
branches:
- master
- devel
permissions:
contents: read
concurrency:
group: style-${{github.ref}}-${{github.event.pull_request.number || github.run_number}}
cancel-in-progress: true
jobs:
install:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout
- uses: actions/setup-python
with:
python-version: '3.9'
- name: Install Python Packages
run: pip install --upgrade pip
- name: Install
run: pip install .
- name: Check
run: cd / ; python -c "import autocog ; print(autocog.__file__)"