Skip to content

Commit 337af81

Browse files
authored
Merge pull request #17 from taiki-e/ci
Fix CI
2 parents 60e316d + 6860810 commit 337af81

File tree

3 files changed

+2
-16
lines changed

3 files changed

+2
-16
lines changed

.github/workflows/build-and-test.yaml

-8
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,6 @@ jobs:
1616
rust: [nightly, beta, stable]
1717
steps:
1818
- uses: actions/checkout@v2
19-
20-
- name: Set current week of the year in environnement
21-
if: startsWith(matrix.os, 'ubuntu') || startsWith(matrix.os, 'macOS')
22-
run: echo "::set-env name=CURRENT_WEEK::$(date +%V)"
23-
24-
- name: Set current week of the year in environnement
25-
if: startsWith(matrix.os, 'windows')
26-
run: echo "::set-env name=CURRENT_WEEK::$(Get-Date -UFormat %V)"
2719

2820
- name: Install latest ${{ matrix.rust }}
2921
uses: actions-rs/toolchain@v1

.github/workflows/lint.yaml

+1-4
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v2
14-
15-
- name: Set current week of the year in environnement
16-
run: echo "::set-env name=CURRENT_WEEK::$(date +%V)"
17-
14+
1815
- uses: actions-rs/toolchain@v1
1916
with:
2017
toolchain: stable

.github/workflows/security.yaml

+1-4
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v2
14-
15-
- name: Set current week of the year in environnement
16-
run: echo "::set-env name=CURRENT_WEEK::$(date +%V)"
17-
14+
1815
- uses: actions-rs/audit-check@v1
1916
with:
2017
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)