From c78ce59639eb78b870c8c8bba307e79d88d1bf4f Mon Sep 17 00:00:00 2001 From: Fons van der Plas Date: Thu, 27 May 2021 22:47:46 +0200 Subject: [PATCH] README: explain .github/workflows/ folder (#44) * README: explain .github/workflows/ folder --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index cca7195..5c0d186 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,8 @@ jobs: - uses: julia-actions/julia-runtest@v1 ``` +You can add this workflow to your repository by placing it in a file called `test.yml` in the folder `.github/workflows/`. [More info here](https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions). + ### Prefixing the Julia command In some packages, you may want to prefix the `julia` command with another command, e.g. for running tests of certain graphical libraries with `xvfb-run`.