Bump boto3-stubs from 1.35.63 to 1.35.69 #3427
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docker | |
on: [push, pull_request] | |
jobs: | |
docker: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Prepare ini files | |
run: cp tests/monitor-docker.ini monitor.ini; cp tests/monitors-docker.ini monitors.ini | |
- name: Build standalone container | |
run: docker build -f docker/monitor.Dockerfile -t simplemonitor:latest . | |
- name: Test Docker container | |
run: docker run simplemonitor simplemonitor --one-shot -v | |
docker-compose: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Prepare ini files | |
run: cp tests/monitor-docker.ini monitor.ini; cp tests/monitors-docker.ini monitors.ini | |
- name: Build docker compose environment | |
run: docker compose build |