Skip to content

feat: more control of averaging potentials #3076

feat: more control of averaging potentials

feat: more control of averaging potentials #3076

Workflow file for this run

name: Pull Request
description: Pull request
on:
pull_request:
branches:
- '*'
paths-ignore:
- '.github/workflows/benchmark.yml'
- '.github/workflows/cacheConan.yml'
- '.github/workflows/cacheNix.yml'
- '.github/workflows/continuous.yml'
- '.github/workflows/issues.yml'
- '.github/workflows/release.yml'
- '.github/workflows/web**'
- '.github/ISSUE_TEMPLATE/**'
- 'web/**'
- 'README.md'
jobs:
Checkout:
uses: "./.github/workflows/_checkout.yml"
with:
checkoutRef: ${{ github.event.pull_request.head.sha }}
QC:
needs: [Checkout]
uses: "./.github/workflows/_qc.yml"
BuildAndPackage:
needs: [Checkout]
uses: "./.github/workflows/_build_and_package.yml"
with:
currentVersion: ${{ needs.Checkout.outputs.currentVersion }}
qtVersion: ${{ needs.Checkout.outputs.qtVersion }}
antlrVersion: ${{ needs.Checkout.outputs.antlrVersion }}
conanHash: ${{ needs.Checkout.outputs.conanHash }}
nixHash: ${{ needs.Checkout.outputs.nixHash }}
Web:
needs: [Checkout]
uses: "./.github/workflows/_website.yml"
with:
publishType: 'none'
displayMajorVersion: ${{ needs.Checkout.outputs.majorVersion }}
displayMinorVersion: ${{ needs.Checkout.outputs.minorVersion }}
hugoVersion: ${{ needs.Checkout.outputs.hugoVersion }}