Skip to content

Commit

Permalink
Merge pull request #124 from sebastienrousseau/feat/ssg
Browse files Browse the repository at this point in the history
feat(ssg): v0.0.19
  • Loading branch information
sebastienrousseau authored Oct 4, 2023
2 parents 49108f2 + ebc851b commit 78b3f3a
Show file tree
Hide file tree
Showing 21 changed files with 590 additions and 140 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ jobs:
- uses: hecrj/setup-rust-action@v2
- name: Install cargo-audit
run: cargo install cargo-audit
- uses: actions/checkout@master
- uses: actions/checkout@v4
- name: Audit dependencies
run: cargo audit
2 changes: 1 addition & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ jobs:
- uses: hecrj/setup-rust-action@v2
with:
components: clippy
- uses: actions/checkout@master
- uses: actions/checkout@v4
- name: Check lints
run: cargo check --all-targets --workspace --all-features
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ jobs:
- uses: hecrj/setup-rust-action@v2
with:
components: clippy
- uses: actions/checkout@master
- uses: actions/checkout@v4
- name: Check lints
run: cargo clippy --workspace --all-features --all-targets --no-deps -- -D warnings
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
# Only run this job on the main branch when a commit is pushed.
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
id: generate-code-coverage
uses: actions-rs/cargo@v1.0.1
uses: actions-rs/cargo@v1
with:
command: xtask
args: coverage
Expand All @@ -64,6 +64,6 @@ jobs:
# Only run this job on the main branch when a commit is pushed.
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
id: upload-report-codecov
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v3
with:
files: coverage/*.lcov
Loading

0 comments on commit 78b3f3a

Please sign in to comment.