Skip to content

Bump openssl from 0.10.60 to 0.10.66 in /src-tauri in the cargo group #174

Bump openssl from 0.10.60 to 0.10.66 in /src-tauri in the cargo group

Bump openssl from 0.10.60 to 0.10.66 in /src-tauri in the cargo group #174

Workflow file for this run

name: Test
on:
push:
branches:
- "*"
pull_request:
workflow_dispatch:
jobs:
test:
strategy:
fail-fast: false
matrix:
platform: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.platform }}
environment: development
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Node.js setup
uses: actions/setup-node@v1
with:
node-version: 16
- name: Rust setup
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Rust Cache
uses: Swatinem/rust-cache@v1
with:
working-directory: ./src-tauri
- name: Install dependencies (ubuntu only)
if: matrix.platform == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev webkit2gtk-4.0 libappindicator3-dev librsvg2-dev patchelf
- name: Install app dependencies and build web
run: yarn && yarn build
- name: Lint
run: npm run lint
- name: Test
run: npm run test
- name: Build the app
uses: tauri-apps/tauri-action@v0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY}}