Skip to content

Commit

Permalink
Merge pull request #75 from jjcomer/fix-sha-length
Browse files Browse the repository at this point in the history
Fix sha length collisions
  • Loading branch information
jjcomer authored Nov 28, 2022
2 parents 45914c9 + 706bbf3 commit a786f3b
Show file tree
Hide file tree
Showing 13 changed files with 1,069 additions and 670 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,20 +89,20 @@ jobs:
with:
use-cross: true
command: clippy
args: +${{ matrix.toolchain }} --target ${{ matrix.target }} -- -D warnings
args: --target ${{ matrix.target }} -- -D warnings
- name: Build
uses: actions-rs/cargo@v1
with:
command: build
use-cross: true
args: +${{ matrix.toolchain }} --target ${{ matrix.target }}
args: --target ${{ matrix.target }}
- name: Test
uses: actions-rs/cargo@v1
if: matrix.testable
with:
command: test
use-cross: true
args: +${{ matrix.toolchain }} --target ${{ matrix.target }}
args: --target ${{ matrix.target }}

fmt:
name: Format
Expand Down
24 changes: 24 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,27 @@
# Avoid checking in db files
*.db
*.json

# Created by https://www.toptal.com/developers/gitignore/api/visualstudiocode
# Edit at https://www.toptal.com/developers/gitignore?templates=visualstudiocode

### VisualStudioCode ###
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
!.vscode/*.code-snippets

# Local History for Visual Studio Code
.history/

# Built Visual Studio Code Extensions
*.vsix

### VisualStudioCode Patch ###
# Ignore all local history of files
.history
.ionide

# End of https://www.toptal.com/developers/gitignore/api/visualstudiocode
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"WhiteSource Advise.Diff.BaseBranch": "master"
}
Loading

0 comments on commit a786f3b

Please sign in to comment.