Skip to content

Commit

Permalink
chore: add test files
Browse files Browse the repository at this point in the history
This branch is meant to test the template.
  • Loading branch information
clechasseur committed Mar 21, 2024
1 parent f0d052b commit 564afb0
Show file tree
Hide file tree
Showing 10 changed files with 558 additions and 15 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/audit-check.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
name: Security audit

on:
# TODO re-enable once project is set up properly
#push:
push:
#schedule:
# - cron: '0 0 * * *'
workflow_dispatch:
Expand Down
13 changes: 6 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
name: CI

on:
# TODO re-enable once project is set up properly
#push:
push:
workflow_dispatch:

env:
Expand All @@ -14,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
all-features: [ false ] # TODO if your crate has optional features, add 'true' to this list
all-features: [ false, true ]
runs-on: ubuntu-latest
steps:
- name: Checkout code
Expand Down Expand Up @@ -55,9 +54,9 @@ jobs:
strategy:
fail-fast: false
matrix:
toolchain: [ 1.60.0 ] # TODO: change for your minimum supported Rust version
toolchain: [ 1.56.1 ]
os: [ ubuntu, macos, windows ]
all-features: [ false ] # TODO if your crate has optional features, add 'true' to this list
all-features: [ false, true ]
runs-on: ${{ matrix.os }}-latest
steps:
- name: Checkout code
Expand Down Expand Up @@ -95,10 +94,10 @@ jobs:
strategy:
fail-fast: false
matrix:
toolchain: [ 1.68.2, stable, beta, nightly ] # TODO: change 1.68.2 for your minimum supported Rust version
toolchain: [ 1.65.0, stable, beta, nightly ]
os: [ ubuntu, macos, windows ]
ignore-lock: [ false, true ]
all-features: [ false ] # TODO if your crate has optional features, add 'true' to this list
all-features: [ false, true ]
include:
- experimental: false
- toolchain: beta
Expand Down
Loading

0 comments on commit 564afb0

Please sign in to comment.