Files
werf-actions/.github/workflows/test.yaml
Alexey Igrychev 51f5846897 chore: up actions/checkout to v3
Signed-off-by: Alexey Igrychev <alexey.igrychev@flant.com>
2023-01-20 11:54:59 +00:00

43 lines
786 B
YAML

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@v3
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@v3
with:
fetch-depth: 0
- name: Install
uses: ./install
with:
version: v1.2.35
- run: werf version