Atomic Object

GitHub Actions: Map Key-Value Pairs in a Matrix

2024-9-12

Lydia Cho

In GitHub Actions, a matrix is a great tool to help you repeat the same job for multiple variables. In the documentation, you can see an example like this: jobs: example_matrix: strategy: matrix: version: [10, 12, 14] os: [ubuntu-latest, windows-latest] As you can see, you could easily run a job for each version and an […]

The post GitHub Actions: Map Key-Value Pairs in a Matrix appeared first on Atomic Spin.