Skip to content

Commit

Permalink
chore(ci): make lint happy
Browse files Browse the repository at this point in the history
  • Loading branch information
fumiama committed Apr 4, 2024
1 parent a3f0a4e commit d27486f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
runs-on: ubuntu-latest
steps:

- name: Check out code
- name: Checkout Code
uses: actions/checkout@v2

- name: Set up Build tools
- name: Setup Build Tools
run: |
sudo apt-get update
sudo apt-get install -y gcc
Expand All @@ -32,7 +32,7 @@ jobs:
-include cosmopolitan.h crt.o ape.o cosmopolitan.a
objcopy -S -O binary base16384.com.dbg base16384.com
- name: Upload binaries to release
- name: Upload Binaries to Release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ jobs:
runs-on: ubuntu-latest
steps:

- name: Check out code
- name: Checkout Code
uses: actions/checkout@v2

- name: Set up Build tools
- name: Setup Build Tools
run: |
sudo apt-get update
sudo apt-get install -y gcc cmake
Expand All @@ -21,4 +21,4 @@ jobs:
cd build
cmake -DBUILD=test ..
make
make test
make test || make test --rerun-failed --output-on-failure
2 changes: 1 addition & 1 deletion test/wrap_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ char tstbuf[BASE16384_ENCBUFSZ];
} \
} fclose(fp); \
if (sum_input != sum_validate) { \
fprintf(stderr, "loop @%d, expect: %016llx, got: %016llx: ", i, sum_input, sum_validate); \
fprintf(stderr, "loop @%d, expect: %016llx, got: %016llx: ", i, (unsigned long long)sum_input, (unsigned long long)sum_validate); \
fputs(TEST_INPUT_FILENAME " and " TEST_VALIDATE_FILENAME " mismatch.", stderr); \
return 1; \
}
Expand Down

0 comments on commit d27486f

Please sign in to comment.