Skip to content

Merge pull request #45 from peap/dependabot/cargo/regex-1.9.4 #92

Merge pull request #45 from peap/dependabot/cargo/regex-1.9.4

Merge pull request #45 from peap/dependabot/cargo/regex-1.9.4 #92

Workflow file for this run

name: Rust
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
permissions:
contents: read
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09 # v2.5.1
with:
egress-policy: audit
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose