Fix: typos in readme. #4377
Workflow file for this run
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
# ===----------------------------------------------------------------------=== # | |
# Copyright (c) 2024, Modular Inc. All rights reserved. | |
# | |
# Licensed under the Apache License v2.0 with LLVM Exceptions: | |
# https://llvm.org/LICENSE.txt | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, | |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
# See the License for the specific language governing permissions and | |
# limitations under the License. | |
# ===----------------------------------------------------------------------=== # | |
name: Test stdlib and examples | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review] | |
workflow_dispatch: | |
permissions: | |
contents: read | |
pull-requests: read | |
jobs: | |
test-examples: | |
name: with ${{ matrix.os }} and assertions=${{ matrix.mojo-enable-assertions }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: ["ubuntu-latest", "macos-14"] | |
mojo-enable-assertions: [0, 1] | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 30 | |
defaults: | |
run: | |
shell: bash | |
env: | |
DEBIAN_FRONTEND: noninteractive | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Download Magic CLI | |
run: | | |
curl -ssL https://magic.modular.com/cfba4c92-2390-4b86-93de-04b2f47114d5 | bash | |
# Add magic to PATH | |
echo "$HOME/.modular/bin" >> $GITHUB_PATH | |
# Pin magic to older version to avoid HTTP timeouts and/or client certificate errors | |
# that manifest as a result of uv/python package solvers from Magic 0.3.0. | |
"$HOME/.modular/bin/magic" self-update --version 0.2.3 | |
- name: Install build tools (Linux) | |
if: ${{ matrix.os == 'ubuntu-latest' }} | |
run: | | |
./stdlib/scripts/install-build-tools-linux.sh | |
- name: Install build tools (macOS) | |
if: ${{ matrix.os == 'macos-14' }} | |
run: | | |
./stdlib/scripts/install-build-tools-macos.sh | |
- name: Run standard library tests and examples | |
env: | |
MOJO_ENABLE_ASSERTIONS_IN_TESTS: ${{ matrix.mojo-enable-assertions }} | |
run: | | |
magic run tests | |
magic run examples |