Skip to content

chore(version): bumps version to 0.4.3 #232

chore(version): bumps version to 0.4.3

chore(version): bumps version to 0.4.3 #232

Workflow file for this run

name: leetcode-cli
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macOS-latest, ubuntu-latest]
steps:
- name: Checkout the source code
uses: actions/checkout@v1
- name: Set nightly toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Environment
run: |
if [[ "$(uname)" == 'Darwin' ]]; then
brew update
brew install sqlite3
else
sudo apt-get update -y
sudo apt-get install -y libsqlite3-dev libdbus-1-dev
fi
- name: Build
run: cargo build --release --locked
- name: Run tests
run: cargo test