build: add dependabot config for pip #50
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
# Apache License 2.0 | ||
name: Build and Test | ||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
concurrency: | ||
group: main-${{ github.ref }} | ||
cancel-in-progress: true | ||
env: | ||
PROJECT_NAME: open-space-toolkit-simulation | ||
jobs: | ||
prepare-environment: | ||
name: Prepare Environment Variables | ||
runs-on: ubuntu-latest | ||
outputs: | ||
project_name: ${{ steps.project-name.outputs.value }} | ||
project_version: ${{ steps.project-version.outputs.value }} | ||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
lfs: true | ||
- id: project-name | ||
name: Get Project Name | ||
run: | | ||
echo "Project name: ${{ env.PROJECT_NAME }}" | ||
echo "value=${{ env.PROJECT_NAME }}" >> $GITHUB_OUTPUT | ||
- id: project-version | ||
name: Get Project Version | ||
run: | | ||
project_version=$(git describe --tags --always) | ||
echo "Project version: ${project_version}" | ||
echo "value=${project_version}" >> $GITHUB_OUTPUT | ||
build-and-test: | ||
name: Build & Test | ||
needs: | ||
- prepare-environment | ||
uses: open-space-collective/open-space-toolkit/.github/workflows/build-test.yml@main | ||
Check failure on line 47 in .github/workflows/build-test.yml GitHub Actions / .github/workflows/build-test.ymlInvalid workflow file
|
||
with: | ||
project_name: ${{ needs.prepare-environment.outputs.project_name }} | ||
project_version: ${{ needs.prepare-environment.outputs.project_version }} | ||
secrets: inherit | ||