[sumcheck] Use Karatsuba interpolation (#20) #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Mirror Repository | |
on: | |
push: | |
branches: [ main ] | |
permissions: | |
contents: read | |
jobs: | |
mirror: | |
name: Mirror Repository to GitLab | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: shimataro/ssh-key-action@v2 | |
with: | |
key: ${{ secrets.GIT_SSH_PRIVATE_KEY }} | |
name: id_rsa | |
known_hosts: ${{ secrets.GIT_SSH_KNOWN_HOSTS }} | |
- name: Mirror current ref to GitLab | |
run: | | |
git remote add gitlab ssh://[email protected]/IrreducibleOSS/binius.git | |
git push gitlab ${{ github.ref }} |