Merge pull request #33 from hodanov/feature/add_docker_image_ci
Add docker_image_ci.yml
This commit is contained in:
commit
69bfd622c2
17
.github/workflows/docker_image_ci.yml
vendored
Normal file
17
.github/workflows/docker_image_ci.yml
vendored
Normal 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
|
||||
28
.github/workflows/style_and_error_checker.yml
vendored
28
.github/workflows/style_and_error_checker.yml
vendored
@ -7,18 +7,18 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
python-version: ["3.9", "3.10", "3.11"]
|
||||
python-version: ['3.9', '3.10', '3.11']
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Set up Python ${{ matrix.python-version }}
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: ${{ matrix.python-version }}
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install pycodestyle pyflakes
|
||||
- name: Analysing the code with pycodestyle
|
||||
run: |
|
||||
pycodestyle --first --ignore='E501' $(git ls-files '*.py')
|
||||
pyflakes $(git ls-files '*.py')
|
||||
- uses: actions/checkout@v4
|
||||
- name: Set up Python ${{ matrix.python-version }}
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: ${{ matrix.python-version }}
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install pycodestyle pyflakes
|
||||
- name: Analysing the code with pycodestyle
|
||||
run: |
|
||||
pycodestyle --first --ignore='E501' $(git ls-files '*.py')
|
||||
pyflakes $(git ls-files '*.py')
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user