Skip to content

Update runs-on and add container image #38

Update runs-on and add container image

Update runs-on and add container image #38

Workflow file for this run

name: unittests py27
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-20.04
container:

Check failure on line 8 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/main.yml

Invalid workflow file

You have an error in your yaml syntax on line 8
image: python:2.7.18-buster
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up Python 2.7
uses: actions/setup-python@v5
with:
python-version: 2.7
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
pip install coverage[toml] tox
- name: Test
if: always()
run: tox -e py27