feat(ci): use github token for curl calls #16
  
    
      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: "Testing ArkScript" | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| name: "${{ matrix.os }}, ArkScript ${{ matrix.version }}, stdlib update: ${{ matrix.stdlib_update }}" | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-24.04, windows-latest, macos-14] | |
| version: [latest, v4.0.0, v4.0.0-18] | |
| stdlib_update: [yes, no] | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Setup ArkScript | |
| uses: ArkScript-lang/setup-arkscript@master | |
| with: | |
| os: ${{ matrix.os }} | |
| version: ${{ matrix.version }} | |
| stdlib_update: ${{ matrix.stdlib_update }} | |
| - name: Run code | |
| shell: bash | |
| run: arkscript --eval '(print "hello world!")' | |