Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: fix flaky tests, cleanup code #17

Merged
merged 1 commit into from
Dec 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:
# https://docs.github.com/en/actions/learn-github-actions/contexts#context-availability
strategy:
matrix:
msrv: [1.64.0] # Clap
msrv: [1.74.0]
name: ubuntu / ${{ matrix.msrv }}
steps:
- uses: actions/checkout@v3
Expand Down
22 changes: 7 additions & 15 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,7 @@ jobs:
/home/runner/.cargo
key: ${{ matrix.toolchain }}-target
- name: Run docker compose
uses: isbang/[email protected]
with:
compose-file: "./docker/docker-compose.yaml"
run: docker compose --file ./docker/docker-compose.yaml up -d
- name: 'Wait until the container is healthy'
uses: raschmitt/wait-for-healthy-container/@master
with:
Expand Down Expand Up @@ -75,9 +73,7 @@ jobs:
- name: cargo update -Zminimal-versions
run: cargo +nightly update -Zminimal-versions
- name: Run docker compose
uses: isbang/[email protected]
with:
compose-file: "./docker/docker-compose.yaml"
run: docker compose --file ./docker/docker-compose.yaml up -d
- name: 'Wait until the container is healthy'
uses: raschmitt/wait-for-healthy-container/@master
with:
Expand Down Expand Up @@ -115,9 +111,7 @@ jobs:
# cd "C:\Program Files\Docker\Docker"
# ./DockerCli.exe -SwitchDaemon
# - name: Run docker compose
# uses: isbang/[email protected]
# with:
# compose-file: "./docker/docker-compose.yaml"
# run: docker compose --file ./docker/docker-compose.yaml up -d
# - name: 'Wait until the container is healthy'
# uses: raschmitt/wait-for-healthy-container/@master
# with:
Expand Down Expand Up @@ -151,9 +145,7 @@ jobs:
/home/runner/.cargo
key: coverage-target
- name: Run docker compose
uses: isbang/[email protected]
with:
compose-file: "./docker/docker-compose.yaml"
run: docker compose --file ./docker/docker-compose.yaml up -d
- name: 'Wait until the container is healthy'
uses: raschmitt/wait-for-healthy-container/@master
with:
Expand All @@ -169,6 +161,6 @@ jobs:
/home/runner/.cargo
key: ${{ steps.target-cache-restore.outputs.cache-primary-key }}
- name: Upload to codecov.io
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: true
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
6 changes: 6 additions & 0 deletions .typos.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[default]

extend-ignore-identifiers-re = [
# This is a commit hash, not a word
"ba28284",
]
Loading
Loading