Skip to content

Merge pull request #2 from wevtoolbox/update-name #3

Merge pull request #2 from wevtoolbox/update-name

Merge pull request #2 from wevtoolbox/update-name #3

Workflow file for this run

---
###
### Lints all generic and json files in the whole git repository
###
name: testing
on:
pull_request:
push:
branches:
- master
tags:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: False
matrix:
version:
- '2.7'
- '3.6'
- '3.7'
- '3.8'
target:
- test
name: "[ ${{ matrix.target }} ${{ matrix.version}} ]"
steps:
- name: Checkout repository
uses: actions/checkout@master
- name: Test
run: |
make ${target} VERSION=${version}
env:
target: ${{ matrix.target }}
version: ${{ matrix.version }}