From: Oleg Broytman Date: Thu, 15 Dec 2022 20:53:34 +0000 (+0300) Subject: CI(GHActions): More descriptive step names X-Git-Url: https://git.phdru.name/sqlconvert.git/?p=sqlconvert.git;a=commitdiff_plain;h=2391d24951c354fe6bdfcb70f4e16a75b7346970 CI(GHActions): More descriptive step names Add OS name. --- diff --git a/.github/workflows/run-tests.yaml b/.github/workflows/run-tests.yaml index fc4d9a7..7d51773 100644 --- a/.github/workflows/run-tests.yaml +++ b/.github/workflows/run-tests.yaml @@ -24,11 +24,11 @@ jobs: # Setup PostgreSQL - uses: ankane/setup-postgres@v1 - - name: Setup Postgres user + - name: Setup Postgres user @ Linux run: | sudo -u postgres psql --command="ALTER USER runner CREATEDB PASSWORD 'test'" if: ${{ runner.os == 'Linux' }} - - name: Setup Postgres user + - name: Setup Postgres user @ w32 run: | psql --command="CREATE USER runner CREATEDB PASSWORD 'test'" if: ${{ runner.os == 'Windows' }}