Skip to content

Commit 564afb0

Browse files
committed
chore: add test files
This branch is meant to test the template.
1 parent f0d052b commit 564afb0

File tree

10 files changed

+558
-15
lines changed

10 files changed

+558
-15
lines changed

.github/workflows/audit-check.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
name: Security audit
22

33
on:
4-
# TODO re-enable once project is set up properly
5-
#push:
4+
push:
65
#schedule:
76
# - cron: '0 0 * * *'
87
workflow_dispatch:

.github/workflows/ci.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
name: CI
22

33
on:
4-
# TODO re-enable once project is set up properly
5-
#push:
4+
push:
65
workflow_dispatch:
76

87
env:
@@ -14,7 +13,7 @@ jobs:
1413
strategy:
1514
fail-fast: false
1615
matrix:
17-
all-features: [ false ] # TODO if your crate has optional features, add 'true' to this list
16+
all-features: [ false, true ]
1817
runs-on: ubuntu-latest
1918
steps:
2019
- name: Checkout code
@@ -55,9 +54,9 @@ jobs:
5554
strategy:
5655
fail-fast: false
5756
matrix:
58-
toolchain: [ 1.60.0 ] # TODO: change for your minimum supported Rust version
57+
toolchain: [ 1.56.1 ]
5958
os: [ ubuntu, macos, windows ]
60-
all-features: [ false ] # TODO if your crate has optional features, add 'true' to this list
59+
all-features: [ false, true ]
6160
runs-on: ${{ matrix.os }}-latest
6261
steps:
6362
- name: Checkout code
@@ -95,10 +94,10 @@ jobs:
9594
strategy:
9695
fail-fast: false
9796
matrix:
98-
toolchain: [ 1.68.2, stable, beta, nightly ] # TODO: change 1.68.2 for your minimum supported Rust version
97+
toolchain: [ 1.65.0, stable, beta, nightly ]
9998
os: [ ubuntu, macos, windows ]
10099
ignore-lock: [ false, true ]
101-
all-features: [ false ] # TODO if your crate has optional features, add 'true' to this list
100+
all-features: [ false, true ]
102101
include:
103102
- experimental: false
104103
- toolchain: beta

0 commit comments

Comments
 (0)