remove as.code references
#739
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: "Build & Test" | |
| on: | |
| push: | |
| branches: | |
| - '**' | |
| tags-ignore: | |
| - '**' | |
| pull_request: | |
| paths-ignore: | |
| - 'docs/*' | |
| - '*.yml' | |
| - '*.md' | |
| - 'LICENSE' | |
| defaults: | |
| run: | |
| shell: bash -l {0} | |
| jobs: | |
| build: | |
| name: "Build & Test" | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: | |
| - ubuntu-latest | |
| version: | |
| - full | |
| steps: | |
| - name: "Cancel similar actions in progress" | |
| uses: styfle/[email protected] | |
| with: | |
| access_token: ${{ github.token }} | |
| - name: "Setup Arturo" | |
| uses: arturo-lang/arturo-action@main | |
| - name: "Checkout" | |
| uses: actions/checkout@main | |
| with: | |
| submodules: recursive | |
| - name: Run unit tests | |
| run: | | |
| echo "${{ github.workspace }}/bin" >> $GITHUB_PATH | |
| arturo tests/test1.art |