Fix pony-lint findings for ponyc 0.69.0 #63
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: | |
| name: Test against recent ponyc release | |
| runs-on: ubuntu-latest | |
| container: | |
| image: ghcr.io/ponylang/shared-docker-ci-standard-builder-with-pcre:release | |
| steps: | |
| - uses: actions/checkout@v6.0.2 | |
| - name: Test | |
| run: make test config=debug |