Skip to content

Bump openssl from 0.10.64 to 0.10.66 in /src/native #100

Bump openssl from 0.10.64 to 0.10.66 in /src/native

Bump openssl from 0.10.64 to 0.10.66 in /src/native #100

Workflow file for this run

name: Build & Test
on:
push:
branches: [ master ]
pull_request:
workflow_dispatch:
jobs:
test:
strategy:
fail-fast: false
matrix:
platform: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v2
- name: Prepare Environment
uses: actions/setup-node@v2
with:
node-version: 17
cache: 'npm'
- name: Install Dependencies (Ubuntu Only)
if: matrix.platform == 'ubuntu-latest'
run: |
sudo apt update
sudo apt install libwebkit2gtk-4.0-dev build-essential curl wget libssl-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev
make install-dev
- name: Install Dependencies (macOS & Windows)
if: matrix.platform != 'ubuntu-latest'
run: make install-dev
- name: Build
run: make build-ci
- name: Test
run: make test