chore: add resolute to releases, add missing questing release #156
This file contains hidden or 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: Pycloudlib Post Merge Check | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| post-merge-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get update -q | |
| sudo apt-get install -qy distro-info tox | |
| sudo apt-get remove --yes --purge azure-cli | |
| - name: Initialize Pycloudlib | |
| env: | |
| GCE_CREDENTIALS_JSON: ${{ secrets.GCE_CREDENTIALS_JSON }} | |
| PYCLOUDLIB_TOML: ${{ secrets.PYCLOUDLIB_TOML }} | |
| run: | | |
| ssh-keygen -P "" -q -f ~/.ssh/cloudinit_id_rsa | |
| mkdir -p ~/.config | |
| echo "$GCE_CREDENTIALS_JSON" > ~/.config/gce_credentials | |
| echo "$PYCLOUDLIB_TOML" > ~/.config/pycloudlib.toml | |
| - name: Git checkout | |
| uses: actions/checkout@v3 | |
| - name: Run CI integration tests | |
| run: | | |
| GOOGLE_APPLICATION_CREDENTIALS=~/.config/gce_credentials tox -e integration-tests-main-check \ | |
| -- --color=yes tests/integration_tests |