Skip to content

Update maxminddb requirement from 0.23.0 to 0.24.0 #1

Update maxminddb requirement from 0.23.0 to 0.24.0

Update maxminddb requirement from 0.23.0 to 0.24.0 #1

Workflow file for this run

name: PR
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on: pull_request
env:
CARGO_TERM_COLOR: always
jobs:
lint-and-tests:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: true
- uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose