Skip to content

Commit 28d76df

Browse files
committed
cp .github from previous proj
1 parent a5db3b6 commit 28d76df

2 files changed

Lines changed: 42 additions & 0 deletions

File tree

.github/workflows/dependabot.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Please see the documentation for all configuration options:
2+
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
3+
4+
# Origin: https://github.com/rust-lang/rust-semverver/blob/master/.github/dependabot.yml
5+
6+
version: 2
7+
updates:
8+
- package-ecosystem: "cargo"
9+
directory: "/"
10+
schedule:
11+
interval: "weekly"
12+
ignore:
13+
# These are peer deps of Cargo and should not be automatically bumped
14+
- dependency-name: "semver"
15+
- dependency-name: "crates-io"
16+
rebase-strategy: "disabled"

.github/workflows/rust-ci.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Rust CI
2+
3+
on:
4+
push:
5+
branches:
6+
- '*'
7+
- '!main'
8+
paths-ignore:
9+
- '**/*.md'
10+
pull_request:
11+
branches: [ "*" ]
12+
13+
env:
14+
CARGO_TERM_COLOR: always
15+
16+
jobs:
17+
build:
18+
19+
runs-on: ubuntu-latest
20+
21+
steps:
22+
- uses: actions/checkout@v4
23+
- name: Build
24+
run: cargo build --verbose
25+
- name: Run tests
26+
run: cargo test --verbose

0 commit comments

Comments
 (0)