We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3149ce commit c2f6a1fCopy full SHA for c2f6a1f
.github/workflows/weekly.yml
@@ -0,0 +1,25 @@
1
+on:
2
+ schedule:
3
+ - cron: '0 0 * * 5'
4
+ workflow_dispatch:
5
+
6
+name: Check
7
8
+env:
9
+ CARGO_NET_RETRY: 3
10
+ CARGO_HTTP_CHECK_REVOKE: false
11
12
+jobs:
13
+ weekly:
14
+ name: Check All Targets - No Cache
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - uses: actions/checkout@v3
18
+ - uses: ./.github/actions/setup-rust
19
+ - name: Set up Docker Buildx
20
+ uses: docker/setup-buildx-action@v1
21
+ - name: Build xtask
22
+ run: cargo build -p xtask
23
+ - name: Build Docker image
24
+ id: build-docker-image
25
+ run: cargo xtask build-docker-image -v --no-cache --from-ci --tag weekly
0 commit comments