Hi Danh, On Tue, 13 Jul 2021, Đoàn Trần Công Danh wrote: > On 2021-07-13 11:51:26+0000, Johannes Schindelin via GitGitGadget <gitgitgadget@xxxxxxxxx> wrote: > > From: Johannes Schindelin <johannes.schindelin@xxxxxx> > > > > [...] > > diff --git a/.github/workflows/run-sparse.yml b/.github/workflows/run-sparse.yml > > new file mode 100644 > > index 00000000000..25f6a6efb40 > > --- /dev/null > > +++ b/.github/workflows/run-sparse.yml > > @@ -0,0 +1,22 @@ > > +name: Run `sparse` > > Markdown doesn't work with Workflow's name. > Please remove those backticks. The backticks are here not to render this as Markdown, but to make it easier to parse what is said. "Run sparse" is technically an English sentence, and a grammatically incorrect and confusing one. By enclosing the word "sparse" in backticks, I make sure that the reader will understand that this refers to a programming term. FWIW I use backticks on this here mailing list all the time. And I am fairly certain that no reader renders my mails as Markdown before reading them. > > +on: [push, pull_request] > > + > > +jobs: > > + sparse: > > + runs-on: ubuntu-20.04 > > + steps: > > + - name: Download the `sparse` package > > + uses: git-for-windows/get-azure-pipelines-artifact@v0 > > + with: > > + repository: git/git > > + definitionId: 10 > > + artifact: sparse-20.04 > > + - name: Install the `sparse` package > > + run: sudo dpkg -i sparse-20.04/sparse_*.deb > > + - name: Install a couple of dependencies > > + run: | > > + sudo apt-get install -q -y libssl-dev libcurl4-openssl-dev libexpat-dev gettext zlib1g-dev > > + - uses: actions/checkout@v2 > > + - name: make sparse > > + run: make sparse > > \ No newline at end of file > > The last step's name and run is the same. We can just drop name, it'll > use run as name. Good point. > Anyway, remember the newline Right. I edited this in VS Code, which does not care for that trailing newline, and ran it through GitHub Actions, which also does not care for that trailing newline, and the `check-whitespace` job also did not point out any issue, therefore I missed this. Thanks, Dscho