Skip to content

Bump regex from 1.10.3 to 1.10.4 #55

Bump regex from 1.10.3 to 1.10.4

Bump regex from 1.10.3 to 1.10.4 #55

Workflow file for this run

name: Unit Test
# This workflow run tests and build for each push
on:
pull_request:
push:
branches:
- main
jobs:
unit_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Update local toolchain
run: |
rustup update
rustup install nightly
- name: Toolchain info
run: |
cargo --version --verbose
rustc --version
- name: Test
run: |
cargo check
cargo test --all