aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/mirror.yml15
-rw-r--r--.github/workflows/test.yml12
2 files changed, 0 insertions, 27 deletions
diff --git a/.github/workflows/mirror.yml b/.github/workflows/mirror.yml
deleted file mode 100644
index 0ec3a82..0000000
--- a/.github/workflows/mirror.yml
+++ /dev/null
@@ -1,15 +0,0 @@
-name: Mirror
-on: [push]
-
-jobs:
- mirror:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v4
- with:
- fetch-depth: 0
- - uses: yesolutions/mirror-action@master
- with:
- REMOTE: 'https://git.popov.link/fparkan.git'
- GIT_USERNAME: ${{ secrets.GIT_USERNAME }}
- GIT_PASSWORD: ${{ secrets.GIT_PASSWORD }}
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
deleted file mode 100644
index 01581b8..0000000
--- a/.github/workflows/test.yml
+++ /dev/null
@@ -1,12 +0,0 @@
-name: Test
-on: [push, pull_request]
-
-jobs:
- test:
- name: cargo test
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v4
- - uses: dtolnay/rust-toolchain@stable
- - run: cargo check --all
- - run: cargo test --all-features