Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

2.11.0 (#64)

2.11.0 (#64) #128

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name:CI
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches:[ master ]
pull_request:
branches:[ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on:ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
-uses:actions/checkout@v4
-name:Spin up kafka
run:cd examples && docker compose up -d && cd ..
-name:Upgrade pip, setuptools, and wheel
run:python3 -m pip install --upgrade pip setuptools wheel
-name:Install python requirements
run:pip install --force-reinstall .[all]
-name:Check for broken dependencies
run:pip check
-name:Wait for services
run:while [ -n "$(docker container ls -a | grep starting)" ]; do sleep 2; done;
-name:Docker inspect
run:docker inspect --format "{{json .State.Health.Status }}" $(docker compose -f examples/docker-compose.yml ps -q)
-name:Show python version
run:python3 --version
-name:Execute tests
run:python3 -m robot -d ./docs examples/
-name:Archive test log
if:${{ always() }}
uses:actions/upload-artifact@v4
with:
name:log.html
path:docs/log.html

[8]ページ先頭

©2009-2025 Movatter.jp