Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: scikit-learn-contrib/scikit-matter
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: harel-coffee/scikit-matter-auto
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 6 commits
  • 6 files changed
  • 1 contributor

Commits on Jun 29, 2024

  1. Delete old workflow

    harel-coffee committed Jun 29, 2024
    Copy the full SHA
    1c906a0 View commit details
  2. Delete old workflow

    harel-coffee committed Jun 29, 2024
    Copy the full SHA
    32b563e View commit details
  3. Delete old workflow

    harel-coffee committed Jun 29, 2024
    Copy the full SHA
    06caf7a View commit details
  4. Delete old workflow

    harel-coffee committed Jun 29, 2024
    Copy the full SHA
    05203bd View commit details
  5. Delete old workflow

    harel-coffee committed Jun 29, 2024
    Copy the full SHA
    b2b4079 View commit details
  6. Create GitHub Action

    harel-coffee committed Jun 29, 2024
    Copy the full SHA
    27a465e View commit details
Showing with 49 additions and 125 deletions.
  1. +0 −24 .github/workflows/build.yml
  2. +0 −25 .github/workflows/docs.yml
  3. +0 −17 .github/workflows/documentation-links.yml
  4. +0 −23 .github/workflows/lint.yml
  5. +49 −0 .github/workflows/main.yml
  6. +0 −36 .github/workflows/tests.yml
24 changes: 0 additions & 24 deletions .github/workflows/build.yml

This file was deleted.

25 changes: 0 additions & 25 deletions .github/workflows/docs.yml

This file was deleted.

17 changes: 0 additions & 17 deletions .github/workflows/documentation-links.yml

This file was deleted.

23 changes: 0 additions & 23 deletions .github/workflows/lint.yml

This file was deleted.

49 changes: 49 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: "CodeQL"

on: [push, pull_request]

jobs:
analyze:
name: Analyze
runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }}
permissions:
actions: read
contents: read
security-events: write

strategy:
fail-fast: false
matrix:
language: [ 'python' ]

steps:
- name: Checkout repository
uses: actions/checkout@v3

- run: pip install jupytext
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
- name: List files in the repository
run: |
ls ${{ github.workspace }}
- run: find . -maxdepth 10 -name \*.ipynb -exec jupytext --to py:percent {} \;
- name: Copy leakage.ql from public repository
run: |
curl -o ${{ github.workspace }}/over_sampling.ql https://raw.githubusercontent.com/harel-coffee/codeql-ml/main/over_sampling.ql
curl -o ${{ github.workspace }}/feature_selection.ql https://raw.githubusercontent.com/harel-coffee/codeql-ml/main/feature_selection.ql
curl -o ${{ github.workspace }}/qlpack.yml https://raw.githubusercontent.com/harel-coffee/codeql-ml/main/qlpack.yml
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
queries: ./over_sampling.ql,./feature_selection.ql
tools: https://github.com/github/codeql-action/releases/download/codeql-bundle-v2.17.5/codeql-bundle-linux64.tar.gz


- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"
36 changes: 0 additions & 36 deletions .github/workflows/tests.yml

This file was deleted.