diff --git a/.github/workflows/javascript.yml b/.github/workflows/javascript.yml deleted file mode 100644 index f292274..0000000 --- a/.github/workflows/javascript.yml +++ /dev/null @@ -1,37 +0,0 @@ -name: Javascript tests - -on: - push: - pull_request: - branches: [main] - -jobs: - Test: - strategy: - matrix: - # Windows is missing from this list as wasm-pack didn't want to work - # on it. We should try to add it back at some point in the future. - os: [ubuntu-latest, macos-latest] - node: ['16'] - include: - - os: ubuntu-latest - node: '14' - - os: ubuntu-latest - node: '12' - runs-on: "${{ matrix.os }}" - steps: - - uses: actions/checkout@v2 - - name: Setup node - uses: actions/setup-node@v3 - with: - node-version: ${{ matrix.node }} - - uses: actions-rs/toolchain@v1 - with: - toolchain: stable - - uses: Swatinem/rust-cache@v1 - - run: npm install - working-directory: ./javascript - - run: npm install -g wasm-pack - - name: Run the tests - working-directory: ./javascript - run: npm test diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml deleted file mode 100644 index 8808719..0000000 --- a/.github/workflows/python.yml +++ /dev/null @@ -1,34 +0,0 @@ -name: Python tests - -on: - push: - pull_request: - branches: [main] - -jobs: - Test: - strategy: - matrix: - os: [ubuntu-latest, macos-latest, windows-latest] - python-version: [3.9] - include: - - os: ubuntu-latest - python-version: "3.10" - - os: ubuntu-latest - python-version: 3.8 - - os: ubuntu-latest - python-version: 3.7 - runs-on: "${{ matrix.os }}" - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 - with: - python-version: ${{ matrix.python-version }} - - uses: actions-rs/toolchain@v1 - with: - toolchain: stable - - uses: Swatinem/rust-cache@v1 - - run: python3 -m pip install nox - - name: Run nox for ${{ matrix.python-version }} - working-directory: ./python - run: nox -s test-${{ matrix.python-version }}