Documentation Updates for ESE API #20
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
name: Artemis API PR Actions | |
on: | |
pull_request: | |
branches: | |
- "main" | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
info: | |
- { os: "macOS-latest", target: "x86_64-apple-darwin", cross: false } | |
- { | |
os: "ubuntu-latest", | |
target: "x86_64-unknown-linux-gnu", | |
cross: false, | |
} | |
- { | |
os: "windows-latest", | |
target: "x86_64-pc-windows-msvc", | |
cross: false, | |
} | |
runs-on: ${{ matrix.info.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Download macOS Intel script tester binary | |
if: matrix.info.os == 'macOS-latest' | |
run: wget -O ./tests/macos/script_tester_macos_intel https://github.com/puffyCid/artemis/releases/download/v0.1.0/script_tester_macos_intel && chmod +x ./tests/macos/script_tester_macos_intel | |
- name: Install Deno | |
if: matrix.info.os == 'macOS-latest' | |
run: brew install deno | |
- name: Compile and run tests (macOS) | |
if: matrix.info.os == 'macOS-latest' | |
run: cd tests/macos && sudo bash compile_tests.sh |