fix openssl #9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: denoland/setup-deno@v2 | |
with: | |
deno-version: v2.x # Run with latest stable Deno. | |
- name: "Upgrade openssl" | |
run: | | |
sudo apt update | |
sudo apt install openssl=3.* | |
openssl version | |
- run: deno fmt --check | |
- run: deno lint | |
- run: deno test -A |