File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -17,15 +17,15 @@ jobs:
17
17
steps :
18
18
- uses : actions/checkout@v4
19
19
20
- - name : Set up Python ${{ matrix.python-version }}
21
- uses : actions/setup-python@v4
22
- with :
23
- python-version : ${{ matrix.python-version }}
20
+ # - name: Set up Python ${{ matrix.python-version }}
21
+ # uses: actions/setup-python@v4
22
+ # with:
23
+ # python-version: ${{ matrix.python-version }}
24
24
25
25
- name : Build the Docker image
26
26
run : |
27
- docker build . --file Dockerfile --tag gtfonow_test:${{ matrix.python-version }}-${{ matrix.linux-distro }} --build-arg PYTHON_VERSION=${{ matrix.python-version }} --build-arg LINUX_DISTRO=${{ matrix.linux-distro }}
27
+ docker build . --file Dockerfile --tag gtfonow_test:${{ matrix.python-version }} --build-arg PYTHON_VERSION=${{ matrix.python-version }} --build-arg LINUX_DISTRO=${{ matrix.linux-distro }}
28
28
29
29
- name : Run tests
30
30
run : |
31
- docker run gtfonow_test:${{ matrix.python-version }}-${{ matrix.linux-distro }}
31
+ docker run gtfonow_test:${{ matrix.python-version }}
Original file line number Diff line number Diff line change 3
3
ARG LINUX_DISTRO=ubuntu:latest
4
4
ARG PYTHON_VERSION=3.8
5
5
6
- FROM ${LINUX_DISTRO }
6
+ FROM python:${PYTHON_VERSION }
7
7
# Set the working directory in the container
8
8
9
9
RUN apt-get update -y
You can’t perform that action at this time.
0 commit comments