Switch CI from ponyc nightly back to release #136
Workflow file for this run
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: PR | |
| on: | |
| pull_request: | |
| paths: | |
| - '**' | |
| - '!**/*.md' | |
| - '!**/*.yml' | |
| - '!**/*.yaml' | |
| - '.github/workflows/pr.yml' | |
| concurrency: | |
| group: pr-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| packages: read | |
| jobs: | |
| vs-ponyc-release-linux: | |
| name: Test against recent ponyc release on Linux | |
| runs-on: ubuntu-latest | |
| container: | |
| image: ghcr.io/ponylang/shared-docker-ci-standard-builder-with-openssl-3.6.2:release | |
| steps: | |
| - uses: actions/checkout@v6.0.2 | |
| - name: Test | |
| run: make test config=debug ssl=3.0.x |