Speed up TSFASTImporter (from 7sec to 115ms for a python file of 900 LoC) #173
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: CI | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - v* | |
| pull_request: | |
| branches: | |
| - main | |
| - v* | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| smalltalk: [ Pharo64-12 ] | |
| name: ${{ matrix.smalltalk }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: tree-sitter/setup-action@v2 | |
| - uses: hpi-swa/setup-smalltalkCI@v1 | |
| with: | |
| smalltalk-image: ${{ matrix.smalltalk }} | |
| - run: smalltalkci -s ${{ matrix.smalltalk }} | |
| shell: bash | |
| timeout-minutes: 15 | |
| - name: Coveralls | |
| uses: coverallsapp/github-action@master | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} |