We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 037fb4f commit 2cf1e17Copy full SHA for 2cf1e17
2 files changed
.github/dependabot.yml
@@ -0,0 +1,12 @@
1
+version: 2
2
+
3
+updates:
4
+ - package-ecosystem: "github-actions"
5
+ directory: "/"
6
+ schedule:
7
+ interval: "weekly"
8
9
+ - package-ecosystem: "cargo"
10
11
12
.github/workflows/ci.yml
@@ -0,0 +1,24 @@
+name: build
+on:
+ push:
+jobs:
+ build:
+ name: build
+ runs-on: ${{ matrix.os }}
+ strategy:
13
+ matrix:
14
+ os: ["ubuntu-latest", "macos-latest", "windows-latest"]
15
16
+ steps:
17
+ - name: Checkout code
18
+ uses: actions/checkout@v4
19
20
+ - name: Install Rust
21
+ uses: dtolnay/rust-toolchain@stable
22
23
+ - name: Build
24
+ run: cargo build
0 commit comments