diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-05-19 14:30:26 +0000 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-05-19 14:34:50 +0000 |
commit | 6fee2ebdd0e1baca8970dcab5267967b2031bbf1 (patch) | |
tree | a37b5180d8c74fc9798962cc4c535e483258fcc3 /.github/workflows | |
parent | Makefile: best practices (diff) | |
download | jekyll-docker-6fee2ebdd0e1baca8970dcab5267967b2031bbf1.tar.gz jekyll-docker-6fee2ebdd0e1baca8970dcab5267967b2031bbf1.zip |
workflows/test.yml: change step names
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/test.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4faf45c..5709771 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,7 +22,7 @@ jobs: path: ${{ env.JEKYLL_PROJECT_NAME }} - name: Add ~/.local/bin to PATH run: echo "::add-path::$HOME/.local/bin" - - name: chruby/ruby-install are not installed + - name: chruby & ruby-install are not installed run: | test '' = "$( type -t chruby-exec )" test '' = "$( type -t ruby-install )" @@ -34,7 +34,7 @@ jobs: make ruby make chruby make chruby/clean - - name: chruby/ruby-install were installed + - name: chruby & ruby-install were installed run: | test 'file' = "$( type -t chruby-exec )" test 'file' = "$( type -t ruby-install )" @@ -136,7 +136,7 @@ jobs: sudo make docker/up "PROJECT_DIR=../$JEKYLL_PROJECT_NAME" sleep 3 sudo make docker/logs - - name: Check container running as container user + - name: Check Jekyll running as container user run: | pid="$( docker inspect -f '{{.State.Pid}}' jekyll_project_1 )" info="$( ps --no-headers -o uid:1,gid:1 -p "$pid" )" |