Skip to content

fix(deps): update rust crate portpicker to 0.1.1 #28

fix(deps): update rust crate portpicker to 0.1.1

fix(deps): update rust crate portpicker to 0.1.1 #28

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
- dev
paths-ignore:
- 'webview-src/**'
- 'webview-dist/**'
- 'examples/**'
jobs:
build-and-test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
steps:
- uses: actions/checkout@v4
- name: Install stable toolchain
uses: dtolnay/rust-toolchain@stable
- name: Install gtk on Ubuntu
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y webkit2gtk-4.0
- name: Set up cargo cache
uses: Swatinem/rust-cache@v2
- name: Run tests
run: cargo test --manifest-path=Cargo.toml --release