diff --git a/.github/workflows/schedule.yml b/.github/workflows/schedule.yml deleted file mode 100644 index fcbf48dd..00000000 --- a/.github/workflows/schedule.yml +++ /dev/null @@ -1,52 +0,0 @@ -name: schedule - -on: - schedule: - - cron: '0 0 * * *' - -jobs: - test: - runs-on: ${{ matrix.os }} - strategy: - matrix: - os: - - ubuntu-latest - - windows-latest - - macOS-latest - version: - - stable - exclude: - - os: macOS-latest - version: devel - steps: - - uses: actions/checkout@v4 - - uses: ./ - with: - nim-version: ${{ matrix.version }} - repo-token: ${{ secrets.GITHUB_TOKEN }} - - - name: Print Nim version - run: nim -v - - name: Print Nimble version - run: nimble -v - - name: Run build test - run: nimble install -Y nimjson - - name: Run command - run: nimjson -h - - test_v1: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: jiro4989/setup-nim-action@v2 - with: - repo-token: ${{ secrets.GITHUB_TOKEN }} - - - name: Print Nim version - run: nim -v - - name: Print Nimble version - run: nimble -v - - name: Run build test - run: nimble install -Y nimjson - - name: Run command - run: nimjson -h diff --git a/.github/workflows/test_versioning.yml b/.github/workflows/test_versioning.yml deleted file mode 100644 index ac8ab4ca..00000000 --- a/.github/workflows/test_versioning.yml +++ /dev/null @@ -1,35 +0,0 @@ -name: test_versioning - -on: - push: - branches: - - master - tags: - - 'v*.*.*' - -jobs: - test_vX: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - name: Cache nimble - id: cache-nimble - uses: actions/cache@v4 - with: - path: ~/.nimble - key: ${{ runner.os }}-nimble-v1 - restore-keys: | - ${{ runner.os }}-nimble-v1 - - - uses: nim-lang/setup-nimble-action@v1 - with: - repo-token: ${{ secrets.GITHUB_TOKEN }} - - - name: Print Nim version - run: nim -v - - name: Print Nimble version - run: nimble -v - - name: Run build test - run: nimble install -Y nimjson - - name: Run command - run: nimjson -h