Skip to content

Commit

Permalink
ci: update action
Browse files Browse the repository at this point in the history
  • Loading branch information
maxibor committed Nov 14, 2024
1 parent a5de44d commit bd5b623
Showing 1 changed file with 10 additions and 12 deletions.
22 changes: 10 additions & 12 deletions .github/workflows/ci_test.yml
Original file line number Diff line number Diff line change
@@ -1,27 +1,25 @@
name: amdirt-CI
name: amdirt

on: [push, pull_request]
on:
- push
- pull_request

jobs:
amdirt_ci:
runs-on: ${{ matrix.os }}
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.10", "3.11", "3.12"]
python-version: ['3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install tox tox-gh-actions
- name: Test with tox
run: tox

run: tox

0 comments on commit bd5b623

Please sign in to comment.