build(deps): bump actions/checkout from 4.2.2 to 7.0.1 (#28161) #33035
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: toml CI | |
| on: | |
| push: | |
| branches: | |
| - master | |
| paths: | |
| - 'vlib/**' | |
| - '!vlib/v3/**' | |
| - '.github/actions/setup-v/**' | |
| - '**/toml_ci.yml' | |
| - '!**.md' | |
| pull_request: | |
| paths: | |
| - 'vlib/**' | |
| - '!vlib/v3/**' | |
| - '.github/actions/setup-v/**' | |
| - '**/toml_ci.yml' | |
| - '!**.md' | |
| concurrency: | |
| group: toml-${{ github.workflow }}-${{ github.ref == 'refs/heads/master' && github.sha || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| toml-module-pass-external-test-suites: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 20 | |
| steps: | |
| - uses: actions/checkout@v7.0.1 | |
| - uses: ./.github/actions/setup-v | |
| - name: Install dependencies | |
| run: | | |
| v retry -- v download https://github.com/jqlang/jq/releases/download/jq-1.6/jq-linux64 | |
| sudo chmod 755 jq-linux64 | |
| sudo mv jq-linux64 /usr/bin/jq | |
| - name: Show JQ Version | |
| run: jq --version | |
| - name: Download more TOML testsuits | |
| run: .github/workflows/download_full_toml_test_suites.sh | |
| - name: Run TOML tests | |
| run: VTEST_TOML_DO_YAML_CONVERSION=1 VTEST_TOML_DO_LARGE_FILES=1 ./v test vlib/toml |