fix unchecked return values from libcurl calls #304
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Codespell" | |
on: [push, pull_request] | |
jobs: | |
codespell: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: install codespell | |
run: | | |
sudo apt-get update | |
sudo apt-get install codespell | |
- name: Perform spelling checks | |
run: codespell README.md RELEASE-NOTES CONTRIBUTING.md trurl.1 trurl.c |