Skip to content

Commit

Permalink
Updates linux CI to use 18.04 (quantumlib#747)
Browse files Browse the repository at this point in the history
Ubuntu 16.04 is no longer supported on github actions actions/runner-images#3287
  • Loading branch information
MichaelBroughton authored and ncrubin committed Jul 25, 2022
1 parent 3580468 commit 7053e98
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on: [pull_request]
jobs:
format:
name: Format check
runs-on: ubuntu-16.04
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v1
- uses: actions/setup-python@v1
Expand All @@ -18,7 +18,7 @@ jobs:
run: check/format-incremental
mypy:
name: Type check
runs-on: ubuntu-16.04
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v1
- uses: actions/setup-python@v1
Expand All @@ -31,7 +31,7 @@ jobs:
run: check/mypy
lint:
name: Lint check
runs-on: ubuntu-16.04
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v1
- uses: actions/setup-python@v1
Expand All @@ -44,7 +44,7 @@ jobs:
run: check/pylint
pytest:
name: Pytest Ubuntu
runs-on: ubuntu-16.04
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v1
- uses: actions/setup-python@v1
Expand All @@ -60,7 +60,7 @@ jobs:
run: check/pytest --actually-quiet
pytest37:
name: Pytest Ubuntu
runs-on: ubuntu-16.04
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v1
- uses: actions/setup-python@v1
Expand All @@ -76,7 +76,7 @@ jobs:
run: check/pytest --actually-quiet
coverage:
name: Coverage check
runs-on: ubuntu-16.04
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v1
- uses: actions/setup-python@v1
Expand Down

0 comments on commit 7053e98

Please sign in to comment.