Merge pull request #33 from hodanov/feature/add_docker_image_ci

Add docker_image_ci.yml
This commit is contained in:
hodanov 2023-10-20 10:16:39 +09:00 committed by GitHub
commit 69bfd622c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 31 additions and 14 deletions

17
.github/workflows/docker_image_ci.yml vendored Normal file
View File

@ -0,0 +1,17 @@
name: Docker image CI
on:
push:
branches:
- 'main'
- 'feature/*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build the Docker image
run: |
cd setup_files
docker build . -f Dockerfile

View File

@ -7,9 +7,9 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
python-version: ["3.9", "3.10", "3.11"] python-version: ['3.9', '3.10', '3.11']
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }} - name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4 uses: actions/setup-python@v4
with: with: