DOC: Fix typo in basics.strings.rst #13572
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: Test Emscripten/Pyodide build | |
on: | |
pull_request: | |
branches: | |
- main | |
- maintenance/** | |
env: | |
FORCE_COLOR: 3 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
build-wasm-emscripten: | |
permissions: | |
contents: read # to fetch code (actions/checkout) | |
name: Pyodide test | |
runs-on: ubuntu-22.04 | |
# To enable this workflow on a fork, comment out: | |
if: github.repository == 'numpy/numpy' | |
steps: | |
- name: Checkout NumPy | |
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
with: | |
submodules: recursive | |
fetch-tags: true | |
persist-credentials: false | |
- uses: pypa/cibuildwheel@c923d83ad9c1bc00211c5041d0c3f73294ff88f6 # v3.1.4 | |
env: | |
CIBW_PLATFORM: pyodide | |
CIBW_BUILD: cp312-* |