From 9ac6cf25657b9dea5b4408dbae7b01d44aa4e5f1 Mon Sep 17 00:00:00 2001 From: Sergey Shliakhov Date: Mon, 14 Feb 2022 12:09:42 +0100 Subject: [PATCH 1/2] Add github workflow --- .github/workflows/main.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 00000000..53fc928b --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,23 @@ +name: main +on: [push] +jobs: + verify: + name: Verify (test and lint) + runs-on: ubuntu-latest + steps: + - name: Setup docker-compose (locally only) + uses: KengoTODA/actions-setup-docker-compose@v1.0.3 + with: + version: '1.29.2' + - run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event." + - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!" + - run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." + - name: Check out repository code + uses: actions/checkout@v2 + - run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner." + - run: echo "🖥️ The workflow is now ready to test your code on the runner." + - name: Install dependendecies + run: make install + - name: test and lint + run: make test + - run: echo "🍏 This job's status is ${{ job.status }}." \ No newline at end of file From 744eb5870ebbaaf137fa09286391edf81df8c674 Mon Sep 17 00:00:00 2001 From: Sergey Shliakhov Date: Mon, 14 Feb 2022 12:29:36 +0100 Subject: [PATCH 2/2] Fix github worflow --- .github/workflows/main.yml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 53fc928b..1a47a284 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -5,19 +5,19 @@ jobs: name: Verify (test and lint) runs-on: ubuntu-latest steps: - - name: Setup docker-compose (locally only) + - name: Setup docker-compose (locally only) uses: KengoTODA/actions-setup-docker-compose@v1.0.3 with: version: '1.29.2' - - run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event." - - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!" - - run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." - - name: Check out repository code - uses: actions/checkout@v2 - - run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner." - - run: echo "🖥️ The workflow is now ready to test your code on the runner." - - name: Install dependendecies - run: make install - - name: test and lint - run: make test - - run: echo "🍏 This job's status is ${{ job.status }}." \ No newline at end of file + - run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event." + - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!" + - run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." + - name: Check out repository code + uses: actions/checkout@v2 + - run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner." + - run: echo "🖥️ The workflow is now ready to test your code on the runner." + - name: Install dependendecies + run: make install + - name: test and lint + run: make test + - run: echo "🍏 This job's status is ${{ job.status }}." \ No newline at end of file