Skip to content

updated github action (now it runs with ubuntu-latest) #75

updated github action (now it runs with ubuntu-latest)

updated github action (now it runs with ubuntu-latest) #75

Workflow file for this run

name: 'Build'
on:
push:
branches:
- master
- develop
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.6", "3.7"]
steps:
- name: checkout
uses: actions/checkout@v3
- name: setup-python
uses: actions/setup-python@v4
with:
python-version: '3.6'
cache: 'pip'
- name: install-requirements
run: pip install -r requirements.txt
- name: check-format
run: python ./check_format.py