Skip to content

fix: resolve javascript syntax error that froze the UI #15

fix: resolve javascript syntax error that froze the UI

fix: resolve javascript syntax error that froze the UI #15

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
env:
CARGO_TERM_COLOR: always
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- run: cargo test --verbose
- run: cargo clippy -- -D warnings
build:
name: Build ${{ matrix.target }}
needs: test
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- target: x86_64-pc-windows-msvc
os: windows-latest
artifact: oplire.exe
- target: x86_64-unknown-linux-gnu
os: ubuntu-latest
artifact: oplire
- target: x86_64-apple-darwin
os: macos-latest
artifact: oplire
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.target }}
- uses: Swatinem/rust-cache@v2
with:
key: ${{ matrix.target }}
- run: cargo build --release --target ${{ matrix.target }}
- uses: actions/upload-artifact@v4
with:
name: oplire-${{ matrix.target }}
path: target/${{ matrix.target }}/release/${{ matrix.artifact }}