22 lines
353 B
YAML
22 lines
353 B
YAML
name: Docker image CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'main'
|
|
- 'feature/*'
|
|
pull_request:
|
|
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
|