Bump serde_json from 1.0.113 to 1.0.114 (#52) #142
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: Build | |
on: | |
push: | |
branches-ignore: | |
# Ignore Dependabot branches because it will also open a pull request, which would cause the | |
# workflow to redundantly run twice | |
- dependabot/** | |
pull_request: | |
permissions: | |
contents: read # to fetch code (actions/checkout) | |
env: | |
# Enable colored terminal output, see https://doc.rust-lang.org/cargo/reference/config.html#termcolor | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
name: Build (${{ matrix.os }}) | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: Swatinem/rust-cache@v2 | |
- name: Install cargo-make | |
uses: davidB/rust-cargo-make@689ca68d60478a0ba51fb79b2c739219d7daf6a2 # v1.10.1 | |
with: | |
version: '0.37.2' | |
- name: Build | |
run: cargo make |