diff options
author | Manuel Palenzuela Merino <manuel.palenzuela@datadoghq.com> | 2024-12-05 11:07:35 +0100 |
---|---|---|
committer | Manuel Palenzuela Merino <manuel.palenzuela@datadoghq.com> | 2024-12-05 11:08:17 +0100 |
commit | ee3c0aa3d71a857ae7fb60f1b98cf129ee6ad71d (patch) | |
tree | 8aeaa3b76be6cdcf326acf3627b3d283a8b2c372 /.github/workflows/test-matrix-strategy.yml | |
parent | Update README.md (diff) | |
download | test-repo-ee3c0aa3d71a857ae7fb60f1b98cf129ee6ad71d.tar.gz test-repo-ee3c0aa3d71a857ae7fb60f1b98cf129ee6ad71d.tar.bz2 test-repo-ee3c0aa3d71a857ae7fb60f1b98cf129ee6ad71d.zip |
Add tests
Diffstat (limited to '.github/workflows/test-matrix-strategy.yml')
-rw-r--r-- | .github/workflows/test-matrix-strategy.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.github/workflows/test-matrix-strategy.yml b/.github/workflows/test-matrix-strategy.yml new file mode 100644 index 0000000..6233ab8 --- /dev/null +++ b/.github/workflows/test-matrix-strategy.yml @@ -0,0 +1,14 @@ +name: CI + +on: [workflow_dispatch] + +jobs: + build: + runs-on: ubuntu-latest + name: matrix ${{ matrix.version }} + strategy: + matrix: + version: [10, 12, 14] + steps: + - uses: actions/checkout@v3 + - run: sleep ${{ matrix.version }} |