From f507c4f344f7a587912b716ab031aa311dbfaa29 Mon Sep 17 00:00:00 2001 From: Alexey Igrychev Date: Wed, 27 Oct 2021 21:22:39 +0100 Subject: [PATCH] ci(test): add Test workflow --- .github/workflows/test.yaml | 43 +++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 .github/workflows/test.yaml diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml new file mode 100644 index 0000000..422b2d3 --- /dev/null +++ b/.github/workflows/test.yaml @@ -0,0 +1,43 @@ +name: Test +on: + push: + +jobs: + channel: + name: By channel + strategy: + fail-fast: false + matrix: + os: [ubuntu-latest, macOS-latest, windows-latest] + runs-on: ${{ matrix.os }} + steps: + - name: Checkout code + uses: actions/checkout@v2 + with: + fetch-depth: 0 + + - name: Install + uses: ./install + + - run: werf version + + version: + name: By version + strategy: + fail-fast: false + matrix: + os: [ubuntu-latest, macOS-latest, windows-latest] + runs-on: ${{ matrix.os }} + steps: + + - name: Checkout code + uses: actions/checkout@v2 + with: + fetch-depth: 0 + + - name: Install + uses: ./install + with: + version: v1.1.23+fix49 + + - run: werf version \ No newline at end of file