Skip to content
This repository has been archived by the owner on Oct 8, 2024. It is now read-only.

fix: save full command #202

fix: save full command

fix: save full command #202

Workflow file for this run

name: Build + Tests
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v3
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Install deps on Windows
if: runner.os == "Windows"

Check failure on line 27 in .github/workflows/rust.yml

View workflow run for this annotation

GitHub Actions / Build + Tests

Invalid workflow file

The workflow is not valid. .github/workflows/rust.yml (Line: 27, Col: 13): Unexpected symbol: '"Windows"'. Located at position 14 within expression: runner.os == "Windows"
run: |
vcpkg install openssl:x64-windows-static-md
- name: Install Deps On Linux
if: runner.os == 'Linux'
run: |
sudo apt-get install libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose