Skip to content

Remove launchdarkly/gh-actions/actions/verify-hello-app from ci.yml #2

Remove launchdarkly/gh-actions/actions/verify-hello-app from ci.yml

Remove launchdarkly/gh-actions/actions/verify-hello-app from ci.yml #2

Workflow file for this run

name: Build and run
on:
push:
branches: [main]
paths-ignore:
- '**.md' # Do not need to run CI for markdown changes.
pull_request:
branches: [main]
paths-ignore:
- '**.md'
jobs:
build-and-run:
runs-on: ubuntu-latest
permissions:
id-token: write # Needed if using OIDC to get release secrets.
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: 3.8
- name: Install poetry
run: pipx install poetry
- name: Install dependencies
run: poetry install