Skip to content

Update actions/checkout action to v4 #87

Update actions/checkout action to v4

Update actions/checkout action to v4 #87

name: build and test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: install support tools
run: pip install virtualenv virtualenvwrapper
- name: lint
run: ./_CI/scripts/lint
- name: test
run: ./_CI/scripts/test
- name: build
run: ./_CI/scripts/build