codegen: New way to generate FunctionDeclaration statements #173
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: Packages | |
on: | |
push: | |
branches: ['main', 'release-*'] | |
paths-ignore: ['**/*.md', '**/*.yml', 'src/**/*', 'test/**/*', '!.github/workflows/packages.yml'] | |
pull_request: | |
paths-ignore: ['**/*.md', '**/*.yml', 'src/**/*', 'test/**/*', '!.github/workflows/packages.yml'] | |
concurrency: | |
cancel-in-progress: true | |
group: packages-${{ github.event.pull_request.number || github.sha }} | |
jobs: | |
packages: | |
runs-on: ${{ matrix.config.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
config: | |
- os: macos-latest | |
- os: ubuntu-latest | |
- os: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: thelang-io/setup-the@v1 | |
- run: the -v | |
- run: (cd packages/algorithm && the install && the test test) | |
- run: (cd packages/analyzer && the install && the test test) | |
- run: (cd packages/c && the install && the test test) | |
- run: (cd packages/codegen && the install && the test test) | |
- run: (cd packages/date && && the install && the test test) | |
- run: (cd packages/html && the install && the test test) | |
- run: (cd packages/parser && the install && the test test) |