feat: Test additional package versions [auto-test-update] (#476) #139
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: Version Testing | |
on: | |
push: | |
schedule: | |
- cron: "0 7 * * *" | |
jobs: | |
# If this key gets renamed, nox.py needs to be adjusted | |
check-new-versions-of-instrumented-packages: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
# If this key gets renamed, nox.py needs to be adjusted | |
python-version: [ '3.7', '3.8', '3.9', '3.10' ] | |
name: check-new-versions-of-instrumented-packages | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- run: pip3 install -r requirements.txt | |
- run: python3 -m nox | |
continue-on-error: true | |
env: | |
TEST_ONLY_UNTESTED_NEW_VERSIONS: true | |
- run: git --no-pager diff | |
- run: mkdir versions_artifact | |
- run: for path in `git diff --name-only`; do cp "$path" versions_artifact; done | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: ${{ matrix.python-version }} | |
path: versions_artifact | |
push-branch: | |
runs-on: ubuntu-latest | |
name: push-branch | |
needs: check-new-versions-of-instrumented-packages | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.7 | |
- run: mkdir versions_artifacts | |
- uses: actions/download-artifact@v2 | |
continue-on-error: true # when there aren't changes the artifact won't be uploaded and this step will fail | |
with: | |
name: 3.7 | |
path: versions_artifacts/3.7 | |
- uses: actions/download-artifact@v2 | |
continue-on-error: true | |
with: | |
name: 3.8 | |
path: versions_artifacts/3.8 | |
- uses: actions/download-artifact@v2 | |
continue-on-error: true | |
with: | |
name: 3.9 | |
path: versions_artifacts/3.9 | |
- uses: actions/download-artifact@v2 | |
continue-on-error: true | |
with: | |
name: '3.10' | |
path: versions_artifacts/3.10 | |
- run: python3 -m pip install -r requirements.txt | |
- run: python3 -m scripts.gather_version_artifacts | |
- run: git --no-pager diff | |
- run: rm -rf versions_artifacts # the artifacts shouldn't be committed | |
- run: echo "::set-output name=branch_name::$(date +version-testing-%Y%m%d)" | |
id: branch_name | |
- run: | # update 'Supported packages' section in README.md | |
python3 -m scripts.update_supported_packages_documentation | |
- run: | # need to set an env var in order to support multi-lines output https://trstringer.com/github-actions-multiline-strings/ | |
new_versions="$(./scripts/describe_supported_versions_diff.sh)" | |
echo "new_versions<<EOF" >> $GITHUB_ENV | |
echo "$new_versions" >> $GITHUB_ENV | |
echo "EOF" >> $GITHUB_ENV | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v4 | |
with: | |
token: "${{ secrets.GITHUB_TOKEN }}" | |
title: ${{steps.branch_name.outputs.branch_name}} | |
branch: ${{steps.branch_name.outputs.branch_name}} | |
commit-message: ${{ env.new_versions }} | |
body: ${{ env.new_versions }} | |
base: main | |
labels: version-testing, automerge | |
reviewers: GuyMoses,saartochner,shanishiri,mmanciop |