mirror of
https://github.com/werf/actions.git
synced 2026-02-05 02:46:23 +03:00
ci(test): add Test workflow
This commit is contained in:
43
.github/workflows/test.yaml
vendored
Normal file
43
.github/workflows/test.yaml
vendored
Normal file
@@ -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.2.35
|
||||
|
||||
- run: werf version
|
||||
Reference in New Issue
Block a user