ci: use ubuntu-latest with python container
Some checks failed
Tests / test (push) Failing after 15s
Some checks failed
Tests / test (push) Failing after 15s
This commit is contained in:
parent
a3668d2534
commit
7c3a14a945
1 changed files with 6 additions and 1 deletions
|
|
@ -3,8 +3,13 @@ on: [push, pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
runs-on: python
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: python:3.11-slim
|
||||||
steps:
|
steps:
|
||||||
|
- name: Install git
|
||||||
|
run: apt-get update && apt-get install -y git
|
||||||
|
|
||||||
- uses: https://github.com/actions/checkout@v4
|
- uses: https://github.com/actions/checkout@v4
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue