Skip to content

Pull latest language versions (#82) #150

Pull latest language versions (#82)

Pull latest language versions (#82) #150

Workflow file for this run

name: Run Tests
on:
pull_request:
push:
branches:
- main
jobs:
test:
name: ${{ matrix.language }}
strategy:
matrix:
language: [python, rust, go, ruby, js]
# https://github.com/actions/runner-images
runs-on: ubuntu-22.04
steps:
# https://github.com/actions/setup-python
- name: setup python
uses: actions/setup-python@v4
with:
python-version: "3.11"
# https://github.com/actions/checkout
- name: checkout code
uses: actions/checkout@v3
- name: install prereqs
run: |
pip install pipenv
pipenv sync
- name: run tests
run: pipenv run tests ${{ matrix.language }} any